Version 0.1.1 rise to flask app factory

This commit is contained in:
CakeCN
2025-08-27 19:39:38 +08:00
parent 8dba8688a7
commit 5c0187bc4b
55 changed files with 1708 additions and 613 deletions

6
Html/wsgi.py Normal file
View File

@@ -0,0 +1,6 @@
# wsgi.py
from bootstrap import bootstrap_paths
bootstrap_paths()
from apps import create_app
# 提供一个可被 WSGI/进程管理器导入的 app 对象
app = create_app()