| 1 | from fastapi import APIRouter |
| 2 | |
| 3 | from app.integrations.crowdstrike.routes.provision import integration_crowdstrike_router |
| 4 | |
| 5 | # Instantiate the APIRouter |
| 6 | router = APIRouter() |
| 7 | |
| 8 | # Include the Crowdstrike related routes |
| 9 | router.include_router( |
| 10 | integration_crowdstrike_router, |
| 11 | prefix="/crowdstrike", |
| 12 | tags=["Crowdstrike"], |
| 13 | ) |