An asynchronous Rust wrapper for BuiltByBit's HTTP API.
toml
[dependencies]
bbb_api_wrapper = "1.0.1"
An extensive list of examples can be found under the /examples
directory.
```Rust use bbbrustapi_wrapper::{APIWrapper, APIToken}; ...
let token = APIToken::Private(String::from("Find @ https://builtbybit.com/account/api"));
let wrapper = APIWrapper::new(token).await.unwrap(); let member = wrapper.members().fetch(87939).await.unwrap();
assert_eq!("Harry", member.username()); ```
Whether you're wanting to report a bug you've come across during use of this wrapper or are seeking general help/assistance, please utilise the issues tracker and tag your issue appropriately during creation.
I try to respond to issues within a reasonable timeframe.