syllabus/app/routes/__init__.py
2026-01-08 13:26:15 -05:00

7 lines
158 B
Python

"""Routes module exports."""
from routes.api import router as api_router
from routes.web import router as web_router
__all__ = ["api_router", "web_router"]