Initial upload: Shell History Alias Generator with full test suite
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
16
shell_alias_gen/parsers/__init__.py
Normal file
16
shell_alias_gen/parsers/__init__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
"""History parsers for different shell formats."""
|
||||
|
||||
from .base import HistoryParser, ParsedCommand
|
||||
from .bash import BashHistoryParser
|
||||
from .zsh import ZshHistoryParser
|
||||
from .fish import FishHistoryParser
|
||||
from .history_factory import HistoryParserFactory
|
||||
|
||||
__all__ = [
|
||||
"HistoryParser",
|
||||
"ParsedCommand",
|
||||
"BashHistoryParser",
|
||||
"ZshHistoryParser",
|
||||
"FishHistoryParser",
|
||||
"HistoryParserFactory",
|
||||
]
|
||||
Reference in New Issue
Block a user