1
0
Fork 0
forked from anton/matekasse
This commit is contained in:
2000-Trek 2023-06-09 22:27:08 +02:00
parent e1b573e32c
commit d209453903

View file

@ -12,7 +12,8 @@ conn = sqlite3.connect(db_path, check_same_thread=False)
c = conn.cursor()
app = Flask(__name__)
app.secret_key = uuid.uuid4().hex
key = str(uuid.uuid4.hex)
app.secret_key = key
socketio = SocketIO(app)