Files
life-echo/api/main.py
2026-03-19 14:36:40 +08:00

8 lines
143 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
入口模块:从 app.main 暴露 app保证 uvicorn main:appcwd=api仍可用。
"""
from app.main import app
__all__ = ["app"]