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