Skip to main content

bullet_ws_interface/
lib.rs

1//! Shared types for the Trading API WebSocket protocol.
2//!
3//! This crate contains the message types used for WebSocket communication
4//! between clients and the trading API server.
5
6mod client;
7mod error;
8mod request;
9mod response;
10mod server;
11
12pub use client::*;
13pub use error::*;
14pub use request::*;
15pub use response::*;
16pub use server::*;