7 lines
175 B
Python
7 lines
175 B
Python
# wsgi.py
|
|
from bootstrap import bootstrap_paths
|
|
bootstrap_paths()
|
|
from apps import create_app
|
|
# 提供一个可被 WSGI/进程管理器导入的 app 对象
|
|
app = create_app()
|