main
py 15 lines 348 Bytes
Raw
1 from fastapi import APIRouter
2
3 from app.integrations.copilot_searches.routes.copilot_searches import (
4 copilot_searches_router,
5 )
6
7 # Instantiate the APIRouter
8 router = APIRouter()
9
10 # Include the Copilot Searches related routes
11 router.include_router(
12 copilot_searches_router,
13 prefix="/copilot_searches",
14 tags=["Copilot Searches"],
15 )