main
py 9 lines 279 Bytes
Raw
1 from fastapi import APIRouter
2
3 from app.connectors.sublime.routes.alerts import sublime_alerts_router
4
5 # Instantiate the APIRouter
6 router = APIRouter()
7
8 # Include the Sublime related routes
9 router.include_router(sublime_alerts_router, prefix="/sublime", tags=["sublime-alerts"])