monzo-lib 0.1.0

async Monzo client in pure rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Monzo API clients
//!
//! ## `[QuickClient](struct.QuickClient.html)`
//! For using with only an access token
//!
//! ## `[Client]`
//! for using with access token, refresh token, and client credentials

mod quick;
pub use quick::Client as QuickClient;
mod refreshable;
pub use refreshable::Client;