ml-demo / app.py
jc
hugg-adding-/v
3ce9201
raw
history blame contribute delete
190 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"stat": "running!", "checks": "/v"}
@app.get("/v")
def ver_json():
return {"vers": "24.10.10"}