Coverage for src/lexigram/web/cli/checks.py: 0%
3 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-25 04:37 +0800
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-25 04:37 +0800
1"""CLI diagnostic checks for lexigram-web."""
3from __future__ import annotations
6def check_routes_valid() -> dict[str, object]:
7 """Validate that all registered routes have valid controllers.
9 Returns:
10 A DoctorCheckResult-compatible dict with status and message.
11 """
12 return {"status": "ok", "message": "Route validation not yet implemented"}