Files
dotfiles/python/api/routers/__init__.py
2026-01-22 21:26:38 -05:00

7 lines
203 B
Python

"""API routers."""
from python.api.routers.contact import router as contact_router
from python.api.routers.frontend import create_frontend_router
__all__ = ["contact_router", "create_frontend_router"]