zam 0.6.0

Enhanced shell history manager with sensitive data redaction
Documentation
//! Command handler implementations for zam CLI
//!
//! This module organizes command handlers into logical groups:
//! - `basic`: Basic commands (log, search, recent, frequent)
//! - `import_export`: Import and export handlers
//! - `database`: Database-specific handlers (migrate, merge, tokens, hosts, sessions)
//! - `config`: Configuration and shell integration handlers
//! - `util`: Utility functions for handlers

mod alias;
mod basic;
mod config;
mod database;
mod import_export;
mod shell_integration;
mod tui_handler;

pub use alias::*;
pub use basic::*;
pub use config::*;
pub use database::*;
pub use import_export::*;
pub use shell_integration::*;
pub use tui_handler::*;