mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 14:08:09 +03:00
17 lines
290 B
Python
17 lines
290 B
Python
from fastapi import APIRouter
|
|
|
|
misc_router = APIRouter()
|
|
|
|
|
|
@misc_router.get("/")
|
|
async def root():
|
|
"""
|
|
Root endpoint to check the status of the API.
|
|
"""
|
|
return {"status": "OK"}
|
|
|
|
|
|
@misc_router.get("/healthz", tags=["Health"])
|
|
async def healthz():
|
|
return {"status": "ok"}
|