| 1 | from fastapi import APIRouter |
| 2 | |
| 3 | from app.integrations.microsoft_patch_tuesday.routes.microsoft_patch_tuesday import ( |
| 4 | microsoft_patch_tuesday_router, |
| 5 | ) |
| 6 | |
| 7 | # Instantiate the APIRouter |
| 8 | router = APIRouter() |
| 9 | |
| 10 | # Include the Microsoft Patch Tuesday related routes |
| 11 | router.include_router( |
| 12 | microsoft_patch_tuesday_router, |
| 13 | prefix="/patch-tuesday", |
| 14 | tags=["Microsoft Patch Tuesday"], |
| 15 | ) |