bronzeflow-utils 0.1.1

bronzeflow-utils: Some common util for bronzeflow(internal dependency)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # bronzeflow-utils: Some common util for bronzeflow
//!
//! This is a temporary internal dependency for bronzeflow

mod log;
pub mod prelude;

pub type Result<T> = anyhow::Result<T>;
pub type BronzeError = anyhow::Error;

pub use anyhow::anyhow as ayn_error;