1
0
Fork 0
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:
Leonard 2024-06-10 10:00:35 +02:00 committed by GitHub
parent 3af000b6a1
commit bd923a6743
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ if UVICORN_ROOT_PATH and len(UVICORN_ROOT_PATH) > 0 and UVICORN_ROOT_PATH != '/'
else: else:
app = FastAPI() app = FastAPI()
@app.get("/") @app.get("/example")
def read_root(): def read_root():
return {"Hello": "World"} return {"Hello": "World"}