Update app.py
Browse files
app.py
CHANGED
@@ -10,6 +10,7 @@ from routes.collaboration import router as collaboration_router
|
|
10 |
from routes.logs import router as logs_router
|
11 |
from routes.support import router as support_router
|
12 |
from routes.sendnotifications import router as sendnotifications_router
|
|
|
13 |
|
14 |
app = FastAPI()
|
15 |
|
@@ -25,6 +26,7 @@ app.include_router(collaboration_router)
|
|
25 |
app.include_router(logs_router)
|
26 |
app.include_router(support_router)
|
27 |
app.include_router(sendnotifications_router)
|
|
|
28 |
|
29 |
@app.get("/")
|
30 |
def root():
|
|
|
10 |
from routes.logs import router as logs_router
|
11 |
from routes.support import router as support_router
|
12 |
from routes.sendnotifications import router as sendnotifications_router
|
13 |
+
from routes.notifications import router as notifications_router
|
14 |
|
15 |
app = FastAPI()
|
16 |
|
|
|
26 |
app.include_router(logs_router)
|
27 |
app.include_router(support_router)
|
28 |
app.include_router(sendnotifications_router)
|
29 |
+
app.include_router(notifications_router)
|
30 |
|
31 |
@app.get("/")
|
32 |
def root():
|