enso_api/
error.rs

1//! Error types for the Enso Finance API client
2//!
3//! This module re-exports the shared `ApiError` type from `yldfi_common`.
4
5pub use yldfi_common::api::{ApiError, ApiResult};
6
7/// Error type for Enso API operations
8pub type Error = ApiError;
9
10/// Result type for Enso API operations
11pub type Result<T> = ApiResult<T>;