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