burn_central/
lib.rs

1// #![cfg_attr(not(feature = "std"), no_std)]
2#![warn(missing_docs)]
3
4//! # Tracel
5
6/// Burn Central Client
7pub use burn_central_core::*;
8
9/// Burn Central macros
10pub mod macros {
11    pub use burn_central_macros::burn_central_main;
12    pub use burn_central_macros::register;
13}
14
15/// Burn Central Runtime
16pub mod runtime {
17    pub use burn_central_runtime::*;
18}