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;
9#[cfg(feature = "fixtures")]
10pub mod fixtures;
11mod macros;
12pub mod message;
13#[cfg(feature = "schema")]
14pub mod schema;
15pub mod string;
16pub mod time;
17pub mod transaction;
18pub mod types;