//! Parsers turn raw history text into structured entries.
//!
//! Each shell stores history differently; implement [`HistoryParser`] to add
//! support for a new format.
pub use ;
pub use FishHistoryParser;
pub use ZshHistoryParser;
use crateHistoryEntry;
/// Swappable parser trait. Implement this for zsh, fish, etc.