main
py 13 lines 301 Bytes
Raw
1 from fastapi import APIRouter
2
3 from app.connectors.cortex.routes.analyzers import cortex_analyzer_router
4
5 # Instantiate the APIRouter
6 router = APIRouter()
7
8 # Include the Cortex related routes
9 router.include_router(
10 cortex_analyzer_router,
11 prefix="/analyzers",
12 tags=["cortex-analyzers"],
13 )