From 8c37311c03511d8b609815e4308587f9c50097a2 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 03:56:24 +0000 Subject: [PATCH] Initial upload: ErrorFix CLI with rule engine and pattern matching --- errorfix/patterns/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 errorfix/patterns/__init__.py diff --git a/errorfix/patterns/__init__.py b/errorfix/patterns/__init__.py new file mode 100644 index 0000000..e08459b --- /dev/null +++ b/errorfix/patterns/__init__.py @@ -0,0 +1,3 @@ +from .matcher import PatternMatcher, MatchResult + +__all__ = ['PatternMatcher', 'MatchResult']