1//! Error types for thulp-mcp. 2 3use thulp_core::Error; 4 5/// Result type alias using [`Error`]. 6pub type Result<T> = std::result::Result<T, Error>;