mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 07:05:36 +01:00
10 lines
167 B
Python
10 lines
167 B
Python
from fastapi import APIRouter
|
|
|
|
|
|
healtcheck_router = APIRouter(tags=["healthcheck"])
|
|
|
|
|
|
@healtcheck_router.get("/healthcheck")
|
|
async def healthcheck():
|
|
return "Ok!"
|