habulaj commited on
Commit
369282c
·
verified ·
1 Parent(s): debb0b1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -3,6 +3,7 @@ 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()
@@ -15,4 +16,5 @@ def greet_json():
15
  app.include_router(news.router)
16
  app.include_router(image.router)
17
  app.include_router(memoriam.router)
18
- app.include_router(video.router)
 
 
3
  from routers import image
4
  from routers import memoriam
5
  from routers import video
6
+ from routers import subtitle
7
 
8
  # Instancia a aplicação FastAPI
9
  app = FastAPI()
 
16
  app.include_router(news.router)
17
  app.include_router(image.router)
18
  app.include_router(memoriam.router)
19
+ app.include_router(video.router)
20
+ app.include_router(subtitle.router)