diff --git a/src/auth0/mod.rs b/src/auth0/mod.rs index c876e7c..a6a52d5 100644 --- a/src/auth0/mod.rs +++ b/src/auth0/mod.rs @@ -43,13 +43,7 @@ impl Auth0 { let token_lock: Arc> = Arc::new(RwLock::new(token)); - start( - token_lock.clone(), - client_ref.clone(), - cache.clone(), - config, - ) - .await; + start(token_lock.clone(), client_ref.clone(), cache.clone(), config).await; Ok(Self { token_lock }) }