9 lines
184 B
Python
9 lines
184 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter(tags=["health"])
|
|
|
|
|
|
@router.get("/health")
|
|
def health() -> dict[str, str]:
|
|
return {"status": "ok", "service": "orbitward-backend"}
|