monzo/client/
inner.rs

1//! 'Inner' clients that encapsulate the different authentication handling
2//! strategies that the Monzo API supports.
3
4mod quick;
5mod refreshable;
6
7pub use quick::Quick;
8pub use refreshable::Refreshable;