car/handler/health.py

12 lines
228 B
Python
Raw Permalink Normal View History

2023-05-31 11:52:34 +08:00
import logger
from fastapi import APIRouter
from utils.common import response
2023-05-31 14:31:13 +08:00
router = APIRouter(tags=["Health"], prefix="/api")
2023-05-31 11:52:34 +08:00
@router.get("/health")
def health():
logger.logger.info("health")
return response("OK")