bullet_exchange_interface/lib.rs
1//! Structures to interface the exchange.
2
3#![allow(clippy::large_enum_variant)]
4
5pub mod address;
6pub mod decimals;
7pub mod error;
8pub mod event;
9mod macros;
10pub mod message;
11#[cfg(feature = "schema")]
12pub mod schema;
13pub mod string;
14pub mod time;
15pub mod transaction;
16pub mod types;