diff --git a/src/app_context.rs b/src/app_context.rs index 8577853c..64f0d463 100644 --- a/src/app_context.rs +++ b/src/app_context.rs @@ -77,10 +77,3 @@ struct AppContextInner { #[cfg(feature = "sidekiq")] redis_fetch: Option, } - -/// Implemented so consumers can use [AppContext] as their [crate::app::App::State] if they want. -impl From> for AppContext { - fn from(value: Arc) -> Self { - value.as_ref().clone() - } -}