| 1 | from fastapi import APIRouter |
| 2 | |
| 3 | from app.data_store.data_store_routes import agent_data_store_router |
| 4 | |
| 5 | # Instantiate the APIRouter |
| 6 | router = APIRouter() |
| 7 | |
| 8 | # Include the customer portal settings routes |
| 9 | router.include_router( |
| 10 | agent_data_store_router, |
| 11 | prefix="/agent_data_store", |
| 12 | tags=["Agent Data Store"], |
| 13 | ) |