Files
sdk-rust/src/error/lib.rs
2025-06-04 11:30:22 -03:00

8 lines
183 B
Rust

// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
pub use anyhow::Error;
pub use thiserror::Error;
pub type Result<T> = core::result::Result<T, Error>;