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