Initial upload: git-insights-cli with CI/CD workflow
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled
CI / release (push) Has been cancelled

This commit is contained in:
2026-01-30 20:35:17 +00:00
parent 1c11de6f3b
commit f26465e5bb

21
src/models/__init__.py Normal file
View File

@@ -0,0 +1,21 @@
from src.models.data_structures import (
Commit,
Author,
FileChange,
CommitAnalysis,
CodeChurnAnalysis,
RiskyCommitAnalysis,
VelocityAnalysis,
ProductivityReport,
)
__all__ = [
"Commit",
"Author",
"FileChange",
"CommitAnalysis",
"CodeChurnAnalysis",
"RiskyCommitAnalysis",
"VelocityAnalysis",
"ProductivityReport",
]