From 68d1f6eefc1fefa6222b323f6fea93d0f4b0e292 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 03:56:20 +0000 Subject: [PATCH] Initial upload: ErrorFix CLI with rule engine and pattern matching --- errorfix/__init__.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 errorfix/__init__.py diff --git a/errorfix/__init__.py b/errorfix/__init__.py new file mode 100644 index 0000000..48df70a --- /dev/null +++ b/errorfix/__init__.py @@ -0,0 +1,18 @@ +from .rules import Rule, RuleLoader +from .patterns import PatternMatcher +from .formatters import Formatter, TextFormatter, JSONFormatter +from .plugins import Plugin, PluginLoader, PluginRegistry +from .cli import cli + +__all__ = [ + 'Rule', + 'RuleLoader', + 'PatternMatcher', + 'Formatter', + 'TextFormatter', + 'JSONFormatter', + 'Plugin', + 'PluginLoader', + 'PluginRegistry', + 'cli', +]