From 91da1de31f3c4f5d79ea8b6c41b4e0bbc9dbed76 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 03:56:21 +0000 Subject: [PATCH] Initial upload: ErrorFix CLI with rule engine and pattern matching --- errorfix/rules/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 errorfix/rules/__init__.py diff --git a/errorfix/rules/__init__.py b/errorfix/rules/__init__.py new file mode 100644 index 0000000..213e72c --- /dev/null +++ b/errorfix/rules/__init__.py @@ -0,0 +1,5 @@ +from .rule import Rule +from .loader import RuleLoader +from .validator import RuleValidator + +__all__ = ['Rule', 'RuleLoader', 'RuleValidator']