Files
demo-fastapi/app/main.py
Gary Kwok 6ddd2f22e3 V1
2024-01-24 17:21:54 +08:00

9 lines
132 B
Python

from typing import Union
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}