mirror of
https://github.com/YunoHost-Apps/FastAPI_ynh.git
synced 2024-09-03 18:36:00 +02:00
15 lines
281 B
Python
15 lines
281 B
Python
|
from typing import Union
|
||
|
|
||
|
from fastapi import FastAPI
|
||
|
|
||
|
app = FastAPI(root_path="__PATH__")
|
||
|
|
||
|
|
||
|
@app.get("/")
|
||
|
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}
|