Spaces:
Running
Running
| """Models for system health & startup checks.""" | |
| from __future__ import annotations | |
| from dataclasses import dataclass | |
| class CheckResult: | |
| name: str | |
| ok: bool | |
| detail: str | |
| fix_hint: str | None = None | |
| fix_command: str | None = None # shell command to remediate, when safe to expose | |