// SPDX-License-Identifier: MIT OR Apache-2.0
// SPDX-FileCopyrightText: 2025-2026 ObzenFlow Contributors
// https://obzenflow.dev
//! Common error handling types for ObzenFlow
//!
//! This module provides the standard Result type used throughout the codebase.
use Error;
/// Standard Result type for ObzenFlow
///
/// This type alias provides a convenient way to return errors that are
/// Send + Sync, which is required for async code and cross-thread usage.
pub type Result<T> = Result;
/// Re-export for convenience
pub use Error as StdError;