Begin adding sockets

This commit is contained in:
2023-06-09 22:27:09 +02:00
parent bba590c0a5
commit 9c43e2721a
13 changed files with 269 additions and 53 deletions

3
run.py
View File

@@ -1,3 +1,4 @@
from app import app
app.create_app().run(debug=True)
socketio, app = app.create_app()
socketio.run(app, debug=True)