diff --git a/src/authenticator.rs b/src/authenticator.rs index 69cbe1d..7e5d76e 100644 --- a/src/authenticator.rs +++ b/src/authenticator.rs @@ -454,6 +454,10 @@ pub trait HyperClientBuilder { fn build_hyper_client(self) -> hyper::Client; } +/// Default authenticator type +pub type DefaultAuthenticator = + Authenticator>; + /// The builder value used when the default hyper client should be used. pub struct DefaultHyperClient; impl HyperClientBuilder for DefaultHyperClient {