Files
LAIC/core/flaskui/flask.py
T
2026-05-06 17:30:35 +03:00

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>"