Files
book_library_server/fastapi_book_server/app/views/healthcheck.py
2023-01-07 23:49:26 +01:00

9 lines
166 B
Python

from fastapi import APIRouter
healtcheck_router = APIRouter(tags=["healthcheck"])
@healtcheck_router.get("/healthcheck")
async def healthcheck():
return "Ok!"