"""Route modules.

Mirrors scenes-v2's blueprint pattern: one router per feature area, mounted
together in app/main.py via include_router(). Keep main.py slim — feature work
lives in the relevant routes/<feature>.py.
"""

from . import auth as auth_routes  # noqa: F401
from . import pages              # noqa: F401
from . import orgs               # noqa: F401
from . import clients            # noqa: F401
from . import crawls             # noqa: F401
from . import reports            # noqa: F401

__all__ = ["auth_routes", "pages", "orgs", "clients", "crawls", "reports"]
