Newer
Older
navi-1 / navi / api / routes / health.py
@Eugene Sukhodolskiy Eugene Sukhodolskiy on 8 Apr 148 bytes Initial implementation of the agent system core
from fastapi import APIRouter

router = APIRouter(tags=["health"])


@router.get("/health")
async def health() -> dict:
    return {"status": "ok"}