10 lines
160 B
Python
10 lines
160 B
Python
from fastapi import APIRouter
|
|
home_router = APIRouter()
|
|
|
|
|
|
@home_router.get(
|
|
'/healthcheck'
|
|
)
|
|
async def healthcheck():
|
|
return {"healthy": True}
|