| 1 | from fastapi import APIRouter |
| 2 | |
| 3 | from app.integrations.github_audit.routes.github_audit import github_audit_router |
| 4 | |
| 5 | # Instantiate the APIRouter |
| 6 | router = APIRouter() |
| 7 | |
| 8 | # Include the GitHub Audit related routes |
| 9 | router.include_router( |
| 10 | github_audit_router, |
| 11 | prefix="/github-audit", |
| 12 | tags=["GitHub Audit"], |
| 13 | ) |