catheihei-api / main.py
Next7years
dd
cf13da4
raw
history blame
No virus
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}