This commit is contained in:
pika 2025-03-25 23:46:55 +01:00
parent 66f9ce3614
commit 15c916768f
2 changed files with 6 additions and 0 deletions

Binary file not shown.

6
run.py Normal file
View file

@ -0,0 +1,6 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)