| """ | |
| 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"] | |
| ) | |