1
0
Fork 0
forked from anton/matekasse
This commit is contained in:
2000-Trek 2023-06-09 21:47:15 +02:00
parent ef35bc7da5
commit f45ad51ff6

View file

@ -12,9 +12,11 @@ conn = sqlite3.connect(db_path, check_same_thread=False)
c = conn.cursor() c = conn.cursor()
app = Flask(__name__) app = Flask(__name__)
socketio = SocketIO(app)
app.debug = True
app.secret_key = str(uuid.uuid4()) app.secret_key = str(uuid.uuid4())
app.debug = True
socketio = SocketIO(app)
status = True status = True
users = queue.Queue() users = queue.Queue()