//! Error type for the `slokit` crate.
/// Errors produced by the core library.
///
/// I/O and CLI-level concerns are handled by the binary (via `anyhow`); this
/// enum stays focused on domain and parsing failures so library consumers get
/// precise, matchable variants.
/// Convenience alias used throughout the crate.
pub type Result<T> = Result;