quivr/backend/core/routes/misc_routes.py
2023-07-17 07:57:27 +01:00

12 lines
193 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"}