mirror of
https://github.com/YunoHost-Apps/FastAPI_ynh.git
synced 2024-09-03 18:36:00 +02:00
Change default api example
URL '/' can't work with this application, since '/' redirects to '/docs'
This commit is contained in:
parent
3af000b6a1
commit
bd923a6743
1 changed files with 2 additions and 2 deletions
|
@ -10,11 +10,11 @@ if UVICORN_ROOT_PATH and len(UVICORN_ROOT_PATH) > 0 and UVICORN_ROOT_PATH != '/'
|
|||
else:
|
||||
app = FastAPI()
|
||||
|
||||
@app.get("/")
|
||||
@app.get("/example")
|
||||
def read_root():
|
||||
return {"Hello": "World"}
|
||||
|
||||
|
||||
@app.get("/items/{item_id}")
|
||||
def read_item(item_id: int, q: Union[str, None] = None):
|
||||
return {"item_id": item_id, "q": q}
|
||||
return {"item_id": item_id, "q": q}
|
||||
|
|
Loading…
Reference in a new issue