Coverage for src/lexigram/features/cli/doctor.py: 0%
3 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-26 01:53 +0800
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-26 01:53 +0800
1"""CLI doctor checks for lexigram-features."""
3from __future__ import annotations
6def check_features_config() -> dict[str, object]:
7 """Validate features section in application.yaml.
9 Returns:
10 A DoctorCheckResult-compatible dict.
11 """
12 return {
13 "status": "ok",
14 "message": "Features configuration check not yet implemented",
15 }