Files
AIRegulation-DocAnalysis/backend/app/main.py

8 lines
161 B
Python
Raw Permalink Normal View History

2026-05-14 15:07:34 +08:00
"""Backend application entrypoint."""
from app.api.main import app
# Keep module behavior explicit so the backend flow stays easy to audit.
2026-05-14 15:07:34 +08:00
__all__ = ["app"]