This commit is contained in:
Aevann1 2022-03-20 01:32:41 +02:00
parent 0d89fa2dfa
commit 29b0bcd9f9

View file

@ -7,15 +7,16 @@ from files.__main__ import app
from flask import render_template
import sys
@app.get("/chat")
@auth_required
def chat( v):
return render_template("chat.html", v=v)
if "load_chat" in sys.argv:
sex = SocketIO(app)
@app.get("/chat")
@auth_required
def chat( v):
return render_template("chat.html", v=v)
@sex.on('speak')
@auth_required
def speak(data, v):