diff options
Diffstat (limited to 'packages/meshbay-hub/src/meshbay_hub/app.py')
| -rw-r--r-- | packages/meshbay-hub/src/meshbay_hub/app.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/meshbay-hub/src/meshbay_hub/app.py b/packages/meshbay-hub/src/meshbay_hub/app.py index d7f95cf..7011bf0 100644 --- a/packages/meshbay-hub/src/meshbay_hub/app.py +++ b/packages/meshbay-hub/src/meshbay_hub/app.py @@ -34,6 +34,7 @@ from meshbay_hub.api.health import router as health_router from meshbay_hub.api.relay import router as relay_router from meshbay_hub.api.signaling import router as signaling_router from meshbay_hub.api.admin import router as admin_router +from meshbay_hub.api.notifications import router as notifications_router from meshbay_hub.api.webapp import router as webapp_router, STATIC_DIR from meshbay_hub.api.middleware import limiter @@ -117,6 +118,7 @@ def create_app(cfg: HubConfig | None = None) -> FastAPI: app.include_router(relay_router) app.include_router(signaling_router) app.include_router(admin_router) + app.include_router(notifications_router) app.include_router(webapp_router) from starlette.staticfiles import StaticFiles |