Initial upload: Add repohealth-cli project with CI/CD workflow
Some checks failed
CI / test (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-02-05 17:14:00 +00:00
parent dfbefe55f3
commit 8e92ea3308

View File

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