mirror of
https://github.com/furyhawk/agent_delta.git
synced 2026-07-21 02:05:36 +00:00
11 lines
233 B
Python
11 lines
233 B
Python
"""API router aggregation."""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.routes.v1 import v1_router
|
|
|
|
api_router = APIRouter()
|
|
|
|
# API v1 routes (prefix is set in main.py via settings.API_V1_STR)
|
|
api_router.include_router(v1_router)
|