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

8 lines
161 B
Python

"""Backend application entrypoint."""
from app.api.main import app
# Keep module behavior explicit so the backend flow stays easy to audit.
__all__ = ["app"]