9 lines
120 B
Python
9 lines
120 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/health")
|
|
async def health() -> str:
|
|
return "OK"
|