1//! Error handling utilities with automatic rich display.
2//!
3//! This module provides the [`ErrorBoundary`] type that wraps operations
4//! and automatically displays errors beautifully on failure using the
5//! configured console and theme.
67mod boundary;
89pub use boundary::ErrorBoundary;