Files
storage/riabenkyi/python/app/main.py
T
2026-08-18 00:05:45 +03:00

11 lines
195 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"status": "ok", "service": "riabenkyi-api"}
@app.get("/health")
def health():
return {"health": "ok"}