chore: Initial commit

This commit is contained in:
2026-04-01 14:30:07 +01:00
commit 91cdd6523f
9 changed files with 141 additions and 0 deletions

6
app/main.py Normal file
View File

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