habulaj commited on
Commit
d77179f
·
1 Parent(s): 8aade40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -1,5 +1,5 @@
1
  from fastapi import FastAPI
2
- from routers import profanity # Importa a rota de palavrões
3
 
4
  app = FastAPI()
5
 
@@ -7,5 +7,6 @@ app = FastAPI()
7
  def greet_json():
8
  return {"Hello": "World!"}
9
 
10
- # Inclui as rotas de profanity
11
- app.include_router(profanity.router)
 
 
1
  from fastapi import FastAPI
2
+ from routers import profanity, other_route # Importa as rotas
3
 
4
  app = FastAPI()
5
 
 
7
  def greet_json():
8
  return {"Hello": "World!"}
9
 
10
+ # Inclui as rotas
11
+ app.include_router(profanity.router)
12
+ app.include_router(other_route.router) # Inclui a rota adicional