init commit

This commit is contained in:
2023-08-10 12:27:18 +08:00
commit 56f93165ba
21 changed files with 457 additions and 0 deletions

14
starter.py Normal file
View File

@@ -0,0 +1,14 @@
from app import create_app
app = create_app()
if __name__ == "__main__":
app.logger.warning(
"""
----------------------------
| app.run() => apiflask run |
----------------------------
"""
)
app.run()