#!/usr/bin/env python3
"""
health-score.py - Entry point (delegates to health_score module)
"""

import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).parent))

from health_score import main  # type: ignore[import-untyped]  # noqa: E402

if __name__ == "__main__":
    sys.exit(main())
