Fetch trading markets from a cryptocurrency exchange.
use crypto_markets::{fetch_markets, MarketType};
fn main() {
let markets = fetch_markets("Binance", MarketType::Spot).unwrap();
println!("{}", serde_json::to_string_pretty(&markets).unwrap())
}