mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-05-07 18:30:25 +02:00
10 lines
187 B
Python
10 lines
187 B
Python
from fastapi import APIRouter
|
|
from fastapi import Response
|
|
|
|
router = APIRouter(prefix="/api")
|
|
|
|
|
|
@router.get("/health")
|
|
def healthcheck() -> Response:
|
|
return Response(status_code=200)
|