bullet-ws-interface 0.1.0

WebSocket message types for the Bullet trading API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared types for the Trading API WebSocket protocol.
//!
//! This crate contains the message types used for WebSocket communication
//! between clients and the trading API server.

mod client;
mod error;
mod request;
mod server;

pub use client::*;
pub use error::*;
pub use request::*;
pub use server::*;