mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 15:15:36 +01:00
Update healthcheck
This commit is contained in:
@@ -1,13 +1,7 @@
|
||||
from fastapi import APIRouter, Depends
|
||||
|
||||
from app.depends import check_token
|
||||
from fastapi import APIRouter
|
||||
|
||||
|
||||
healtcheck_router = APIRouter(
|
||||
prefix="/api/v1",
|
||||
tags=["healthcheck"],
|
||||
dependencies=[Depends(check_token)],
|
||||
)
|
||||
healtcheck_router = APIRouter(tags=["healthcheck"])
|
||||
|
||||
|
||||
@healtcheck_router.get("/healthcheck")
|
||||
|
||||
Reference in New Issue
Block a user