test-fastapi / app.py
Yermek68's picture
Update app.py
6847ea1 verified
raw
history blame contribute delete
385 Bytes
from fastapi import FastAPI
app = FastAPI(title="Eroha Minimal Health Test")
@app.get("/")
def home():
return {
"message": "Hello, Eroha — this is a minimal FastAPI test!",
"check_url": "/check"
}
@app.get("/check")
def check_health():
return {
"status": "ok",
"modules": ["core", "rag", "metrics"],
"version": "test-1.0"
}