| 1 | from fastapi import APIRouter |
| 2 | |
| 3 | from app.integrations.alert_creation_settings.routes.alert_creation_settings import ( |
| 4 | alert_creation_settings_router, |
| 5 | ) |
| 6 | |
| 7 | # Instantiate the APIRouter |
| 8 | router = APIRouter() |
| 9 | |
| 10 | # Include the Ask SocFortress related routes |
| 11 | router.include_router( |
| 12 | alert_creation_settings_router, |
| 13 | prefix="/api/v1/alert_settings", |
| 14 | tags=["Alert Creation Settings"], |
| 15 | ) |