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

This commit is contained in:
2026-01-30 20:35:19 +00:00
parent 10756e2dc9
commit cee161f747

13
src/analyzers/__init__.py Normal file
View File

@@ -0,0 +1,13 @@
from src.analyzers.git_repository import GitRepository
from src.analyzers.commit_pattern import CommitPatternAnalyzer
from src.analyzers.code_churn import CodeChurnAnalyzer
from src.analyzers.risky_commit import RiskyCommitDetector
from src.analyzers.velocity import VelocityAnalyzer
__all__ = [
"GitRepository",
"CommitPatternAnalyzer",
"CodeChurnAnalyzer",
"RiskyCommitDetector",
"VelocityAnalyzer",
]