feature: 项目初始化

This commit is contained in:
zhengxinonly
2023-09-26 22:47:21 +08:00
commit 49822daada
8 changed files with 776 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from flask import Flask
def create_app():
app = Flask(__name__)
@app.route("/")
def index():
return "hello pear-admin-flask !"
return app