2
0
mirror of https://github.com/tribufu/sdk-rust synced 2025-06-18 12:04:19 +00:00

Add utils crates

This commit is contained in:
2025-06-04 11:30:22 -03:00
parent f5d3e86eb2
commit 738f9c947b
18 changed files with 412 additions and 1 deletions

7
src/error/lib.rs Normal file

@ -0,0 +1,7 @@
// 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>;