generated from Luis/nextjs-python-web-template
9 lines
144 B
Python
9 lines
144 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/health", include_in_schema=True)
|
|
async def health() -> str:
|
|
return "OK"
|