quotes 0.1.2

Request tick、stock_list msgs
Documentation

Documentation

Installation

[dependencies]
quotes = "0.1.2"

Examples

#[async_std::main]
async fn main() {
    match quotes::stock_list().await {
        Ok(l) => println!("len = {}", l.len()),
        Err(e) => println!("err = {}", e),
    }
}