Files
encoach_backend/app/api/home.py
Carlos Mesquita 3cf9fa5cba Async release
2024-07-23 08:40:35 +01:00

10 lines
151 B
Python

from fastapi import APIRouter
home_router = APIRouter()
@home_router.get(
'/healthcheck'
)
async def healthcheck():
return {"healthy": True}