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 server;
10
11pub use client::*;
12pub use error::*;
13pub use request::*;
14pub use server::*;