This commit is contained in:
2024-04-13 01:41:30 +00:00
commit 24d1a80164
8 changed files with 711 additions and 0 deletions

View File

6
flask_demo_api/main.py Normal file
View File

@@ -0,0 +1,6 @@
from flask import Flask
def app_factory() -> Flask:
app = Flask(__name__)
return app