jungil's picture
Update app.py
b3a1356
raw
history blame
269 Bytes
from fastapi import FastAPI
# FastAPI ์ธ์Šคํ„ด์Šค ์ƒ์„ฑ
app = FastAPI()
# ๋ผ์šฐํŠธ ์ƒ์„ฑ
@app.get("/")
def read_root():
return {"Hello": "World"}
@app.get("/items/{item_id}")
def read_item(item_id: int, q: str = None):
return {"item_id": item_id, "q": q}