File size: 341 Bytes
bcc2f7b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"""
API v1 router configuration.
"""
from fastapi import APIRouter
from app.api.v1.endpoints import inference, health
api_router = APIRouter()
# Include endpoint routers
api_router.include_router(
inference.router,
tags=["Marine Species Detection"]
)
api_router.include_router(
health.router,
tags=["Health & Status"]
)
|