initial setup

This commit is contained in:
2026-02-24 16:18:19 +01:00
commit f5ac44886b
6 changed files with 43 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from flask import Flask
from flask_socketio import SocketIO
sIO = SocketIO()
def create_app():
app = Flask(__name__)
app.config['SECRET_KEY'] = 'dev'
sIO.init_app(app)
return app
View File