members.lumbung.space/members_lumbung_space/routes/health.py

11 lines
195 B
Python
Raw Normal View History

2022-01-10 12:34:17 +00:00
"""Healthcheck routes."""
from fastapi import APIRouter, Request
router = APIRouter()
@router.get("/healthz")
async def healthz(request: Request):
return {"detail": "ALL ENGINES FIRING"}