Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,6 +2,7 @@ from fastapi import FastAPI, Request
|
|
| 2 |
from routers import news
|
| 3 |
from routers import image
|
| 4 |
from routers import memoriam
|
|
|
|
| 5 |
|
| 6 |
# Instancia a aplicação FastAPI
|
| 7 |
app = FastAPI()
|
|
@@ -13,4 +14,5 @@ def greet_json():
|
|
| 13 |
# Inclui as rotas
|
| 14 |
app.include_router(news.router)
|
| 15 |
app.include_router(image.router)
|
| 16 |
-
app.include_router(memoriam.router)
|
|
|
|
|
|
| 2 |
from routers import news
|
| 3 |
from routers import image
|
| 4 |
from routers import memoriam
|
| 5 |
+
from routers import video
|
| 6 |
|
| 7 |
# Instancia a aplicação FastAPI
|
| 8 |
app = FastAPI()
|
|
|
|
| 14 |
# Inclui as rotas
|
| 15 |
app.include_router(news.router)
|
| 16 |
app.include_router(image.router)
|
| 17 |
+
app.include_router(memoriam.router)
|
| 18 |
+
app.include_router(video.router)
|