mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 15:40:22 +00:00
15 lines
261 B
Python
15 lines
261 B
Python
|
from typing import Optional
|
||
|
|
||
|
from fastapi import FastAPI
|
||
|
|
||
|
app = FastAPI()
|
||
|
|
||
|
|
||
|
@app.get("/")
|
||
|
def read_root():
|
||
|
return {"Hello": "World"}
|
||
|
|
||
|
|
||
|
@app.get("/items/{item_id}")
|
||
|
def read_item(item_id: int, q: Optional[str] = None):
|
||
|
return {"item_id": item_id, "q": q}
|