mirror of
https://github.com/tribufu/sdk-rust
synced 2025-06-16 11:14:17 +00:00
8 lines
183 B
Rust
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>;
|