This commit is contained in:
2026-08-18 00:05:45 +03:00
commit 9c098bf000
11 changed files with 317 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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"}