knowledge-engine / api /v1 /system.py
m97j's picture
Initial commit
b62e029
raw
history blame contribute delete
263 Bytes
# api/v1/system.py
from fastapi import APIRouter
router = APIRouter(prefix="/health", tags=["Health Check"])
# ---------------------------
# Debug endpoint (optional)
# ---------------------------
@router.get("/ping")
def ping():
return {"message": "pong"}