Files
dotfiles/python/api/routers/__init__.py
2026-03-22 19:07:23 -04:00

7 lines
190 B
Python

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