feat(DefaultFlowDelegate): Introduce DefaultFlowDelegate type.

This was necessary after splitting traits.
This commit is contained in:
Lewin Bormann
2019-06-13 15:28:25 +02:00
parent 9efad9b086
commit 86e71cca5d

View File

@@ -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 {}