From 86e71cca5d45a2b0f9db36b6864e769eb211ba4d Mon Sep 17 00:00:00 2001 From: Lewin Bormann Date: Thu, 13 Jun 2019 15:28:25 +0200 Subject: [PATCH] feat(DefaultFlowDelegate): Introduce DefaultFlowDelegate type. This was necessary after splitting traits. --- src/authenticator_delegate.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/authenticator_delegate.rs b/src/authenticator_delegate.rs index 1dd37e1..b5723ac 100644 --- a/src/authenticator_delegate.rs +++ b/src/authenticator_delegate.rs @@ -210,3 +210,7 @@ pub trait FlowDelegate: Clone { #[derive(Clone)] pub struct DefaultAuthenticatorDelegate; impl AuthenticatorDelegate for DefaultAuthenticatorDelegate {} + +#[derive(Clone)] +pub struct DefaultFlowDelegate; +impl FlowDelegate for DefaultFlowDelegate {}