Initial upload: ErrorFix CLI with rule engine and pattern matching
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
18
errorfix/__init__.py
Normal file
18
errorfix/__init__.py
Normal file
@@ -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',
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user