//! Command handler implementations
//!
//! This module provides shared handler functions that can be used by both the
//! CLI and the REPL for common operations like querying and I/O.
// Note: Modification operations (insert/delete/clear) are backend-specific
// and handled directly by dictionary containers (REPL's DictContainer, etc.)
// They don't fit into a shared handler pattern since the Dictionary trait
// is immutable.
// Re-exports for convenience
pub use execute_query;
pub use ;