bitsors 1.1.16

A Rust wrapper for the Bitso API
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate bitsors;

use bitsors::client::Bitso;

#[tokio::main]
async fn main() {
    let bitso = Bitso::default().build();
    let result = bitso.get_trades("btc_mxn", None).await;
    println!("{:?}", result);
}