QuakeFlow / app.py
zhuwq0's picture
Add application file
b201659
raw
history blame contribute delete
114 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "QuakeFlow!"}