feat: initialize flask app skeleton

This commit is contained in:
ila
2026-07-04 23:20:40 +08:00
parent 22e69ccce1
commit 5a7ea348e5
12 changed files with 82 additions and 17 deletions
+8
View File
@@ -0,0 +1,8 @@
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run()