bitget_rs 0.1.0

Bitget V2 futures SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!("../README.md")]

pub mod api;
pub mod client;
pub mod config;
pub mod error;
pub mod utils;

pub use api::{
    account::BitgetAccount, announcements::BitgetAnnouncements, asset::BitgetAsset,
    market::BitgetMarket, trade::BitgetTrade, websocket::BitgetWebsocket,
};
pub use client::BitgetClient;
pub use error::Error;