14 lines
217 B
Python
14 lines
217 B
Python
from flask import *
|
|
|
|
ui = Flask(__name__)
|
|
|
|
@ui.route("/")
|
|
@ui.route("/index")
|
|
def index():
|
|
return render_template('index.html')
|
|
|
|
@ui.route("/chats")
|
|
def chats():
|
|
return "<h1>Страница чатов</h1>"
|
|
|