birdie 0.1.0

Birdie is a third party Binance API client, allowing you to easily interact with the Binance API using Rust.
Documentation
1
2
3
4
5
6
7
8
9
//! Binance's FIX API - stub

pub struct FixApiClient {}

impl FixApiClient {
    pub fn new() -> Self {
        Self {}
    }
}