mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 04:58:19 -04:00
7 lines
221 B
Python
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"]
|