bitsors 1.1.16

A Rust wrapper for the Bitso API
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct JSONResponse<T> {
    pub success: bool,
    pub payload: T,
}

pub mod private;
pub mod public;
pub mod websocket;