catheihei-api / main.py
Next7years
dfadsf
b70cefb
raw
history blame
112 Bytes
from fastapi import FastAPI
myapp = FastAPI()
@myapp.get("/")
def read_root():
return {"Hello": "World!"}