7 lines
160 B
Python
7 lines
160 B
Python
from app.config import Settings
|
|
|
|
|
|
def build_status_payload(settings: Settings) -> dict[str, str]:
|
|
return {"status": "ok", "environment": settings.app_env}
|
|
|