| 1 | from fastapi import APIRouter |
| 2 | |
| 3 | from app.integrations.huntress.routes.provision import ( |
| 4 | integration_huntress_provision_scheduler_router, |
| 5 | ) |
| 6 | |
| 7 | # Instantiate the APIRouter |
| 8 | router = APIRouter() |
| 9 | |
| 10 | # Include the Huntress Provision APIRouter |
| 11 | router.include_router( |
| 12 | integration_huntress_provision_scheduler_router, |
| 13 | prefix="/huntress", |
| 14 | tags=["huntress"], |
| 15 | ) |