From 12b76cbe126cf8d1ed832ff16b83d47fd4c464aa Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 06:34:29 +0000 Subject: [PATCH] Initial upload: Local AI Commit Reviewer CLI with CI/CD workflow --- src/core/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/core/__init__.py diff --git a/src/core/__init__.py b/src/core/__init__.py new file mode 100644 index 0000000..b10b648 --- /dev/null +++ b/src/core/__init__.py @@ -0,0 +1,3 @@ +from .review_engine import Issue, IssueCategory, IssueSeverity, ReviewEngine, ReviewResult + +__all__ = ["Issue", "IssueCategory", "IssueSeverity", "ReviewEngine", "ReviewResult"]