Initial upload: Shell History Alias Generator with full test suite
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 08:51:33 +00:00
parent 1288ab0440
commit 2a11a33bdb

View 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",
]