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