Base WEB UI structure

This commit is contained in:
2026-05-06 17:30:35 +03:00
parent 16a7fb32fd
commit e9a843bdc8
355 changed files with 62691 additions and 7 deletions
+13
View File
@@ -0,0 +1,13 @@
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>"