8 lines
143 B
Python
8 lines
143 B
Python
"""
|
||
入口模块:从 app.main 暴露 app,保证 uvicorn main:app(cwd=api)仍可用。
|
||
"""
|
||
|
||
from app.main import app
|
||
|
||
__all__ = ["app"]
|