11 lines
187 B
Python
11 lines
187 B
Python
from __future__ import annotations
|
|
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter(prefix="/health", tags=["health"])
|
|
|
|
|
|
@router.get("")
|
|
async def health():
|
|
return {"status": "ok"}
|