codegrpah / main.py
GlenZhang's picture
Duplicate from GlenZhang/fastapi_center
7a376cd
raw
history blame contribute delete
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}