This crate is an async Monzo API client in pure rust.
It is intended as the backend of a monzo CLI app that i'll probably never get to building.
In order to use this client, you will first need to get an access token and/or refresh token for the Monzo API (see the docs)
```rust use monzo_lib::{Client, Result};
async fn main() -> Result<()> { let client = Client::builder() .accesstoken("ACCESSTOKEN") .refreshtoken("REFRESHTOKEN") .build();
let accounts = client.accounts().await?;
let account_id = &accounts[0].id;
let balance = client.balance(account_id).await?;
Ok(())
} ```
Current version: 0.0.0
License: Apache-2.0