From 85abd85101f898bf2815487d72893bd4c56261cb Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 17:14:03 +0000 Subject: [PATCH] Initial upload: Add repohealth-cli project with CI/CD workflow --- src/repohealth/reporters/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/repohealth/reporters/__init__.py diff --git a/src/repohealth/reporters/__init__.py b/src/repohealth/reporters/__init__.py new file mode 100644 index 0000000..aee259e --- /dev/null +++ b/src/repohealth/reporters/__init__.py @@ -0,0 +1,7 @@ +"""Reporting modules for different output formats.""" + +from repohealth.reporters.terminal import TerminalReporter +from repohealth.reporters.json_reporter import JSONReporter +from repohealth.reporters.html_reporter import HTMLReporter + +__all__ = ["TerminalReporter", "JSONReporter", "HTMLReporter"]