Files
dotfiles/python/van_inventory/routers/__init__.py
2026-03-09 07:18:01 -04:00

7 lines
221 B
Python

"""Van inventory API routers."""
from python.van_inventory.routers.api import router as api_router
from python.van_inventory.routers.frontend import router as frontend_router
__all__ = ["api_router", "frontend_router"]