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"]