Option C Tools
Loading...
Searching...
No Matches
__init__.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3# oct/health/__init__.py
4
5"""
6Health check module for OCT.
7
8Purpose
9-------
10Provides a single-command project compliance dashboard.
11
12Responsibilities
13----------------
14- Export the main health check entry point (`run_health`).
15- Enable CLI integration of the health command.
16
17Diagnostics
18-----------
19Domain: OCT.HEALTH
20Levels:
21 L2 — health check lifecycle
22 L3 — individual check execution
23 L4 — detailed per-file analysis
24
25Contracts
26---------
27- All public exports are guaranteed to be importable from this module.
28"""
29
30from oct.health.oct_health import run_health
31
32__all__ = ["run_health"]