cryptomkt 0.2.4

Implementation of Cryptomarket API
Documentation
1
2
3
4
5
6
7
8
use cryptomkt::CryptoMktClient;

#[test]
fn test_api_get_markets() {
    let api = CryptoMktClient::new("APK", "SK");
    let markets = api.get_markets();
    assert!(markets.len() > 1);
}