bybit-async 0.1.0

Rust Library for the Bybit API (Async)
Documentation
use anyhow::Error;
use bybit_async::{
    rest,
    Bybit,
};
use fehler::throws;
use std::env::var;

#[throws(Error)]
#[tokio::test]
async fn get_account_spot() {
    env_logger::init();

    // let bybit = Bybit::with_key_and_secret(&var("BYBIT_KEY")?, &var("BYBIT_SECRET")?);
    // let resp = bybit.request(rest::GetAccountRequest {}).await?;
    // println!("{resp:?}");
}

#[throws(Error)]
#[tokio::test]
async fn get_account_usdm() {
    env_logger::init();

    // let bybit = Bybit::with_key_and_secret(&var("BYBIT_KEY")?, &var("BYBIT_SECRET")?);
    // let resp = bybit.request(rest::account::AccountInformationV2Request {}).await?;
    // println!("{resp:?}");
}