newapi-clone / app.py
habulaj's picture
Update app.py
0dfcecc verified
raw
history blame
239 Bytes
from fastapi import FastAPI, Request
from routers import searchterm
# Instancia a aplicação FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
# Inclui as rotas
app.include_router(searchterm.router)