tradingview-rs 0.2.0

Tradingview datafeed api `tradingview-rs` project.
Documentation
1
2
3
4
5
use std::sync::Arc;

pub trait DataClient {
    fn new(auth_token: Option<&str>) -> Arc<Self>;
}