Spaces:
Running
Running
File size: 261 Bytes
24f95f0 | 1 2 3 4 5 6 7 8 9 10 11 | from dataclasses import dataclass
from typing import Optional
@dataclass
class RuntimeState:
db_mode: str = "unknown" # "postgres" | "fallback_json" | "degraded"
db_ready: bool = False
reason: Optional[str] = None
runtime_state = RuntimeState()
|