kws-service / app.py
pkufool
Commit example
644d6e0
raw
history blame contribute delete
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}