From 8e92ea330895c88ff2d54161920d3517a190073f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 17:14:00 +0000 Subject: [PATCH] Initial upload: Add repohealth-cli project with CI/CD workflow --- src/repohealth/models/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/repohealth/models/__init__.py diff --git a/src/repohealth/models/__init__.py b/src/repohealth/models/__init__.py new file mode 100644 index 0000000..159951c --- /dev/null +++ b/src/repohealth/models/__init__.py @@ -0,0 +1,7 @@ +"""Data models for repository analysis.""" + +from repohealth.models.file_stats import FileAnalysis +from repohealth.models.author import AuthorStats +from repohealth.models.result import RepositoryResult + +__all__ = ["FileAnalysis", "AuthorStats", "RepositoryResult"]