npv2k1's picture
feat: implement API module with FastAPI and initial route handlers
3ec4ff0
raw
history blame contribute delete
87 Bytes
"""API routes package."""
from .v1 import router as v1_router
__all__ = ["v1_router"]