CUA / app.py
root
Add application file
510cb61
raw
history blame contribute delete
177 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.get("/status")
def status():
return {"status": "running"}