Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,7 @@ 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 |
|
@@ -27,6 +28,7 @@ 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():
|
|
|
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 |
+
from routes.emails import router as emails_router
|
15 |
|
16 |
app = FastAPI()
|
17 |
|
|
|
28 |
app.include_router(support_router)
|
29 |
app.include_router(sendnotifications_router)
|
30 |
app.include_router(notifications_router)
|
31 |
+
app.include_router(emails_router)
|
32 |
|
33 |
@app.get("/")
|
34 |
def root():
|