Files
book_library_server/fastapi_book_server/app/views/healthcheck.py
2022-02-12 13:02:23 +03:00

10 lines
167 B
Python

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