From e8142ba869bffa60d9a3a809d1c7e2093afd8ba5 Mon Sep 17 00:00:00 2001 From: timofey Date: Sat, 17 Jun 2023 18:49:56 +0000 Subject: [PATCH] move `radn_derive::SharedFunctorAny` --- src/func.rs | 2 -- src/func/shared.rs | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/func.rs b/src/func.rs index 5a44bb8..1daf001 100644 --- a/src/func.rs +++ b/src/func.rs @@ -21,8 +21,6 @@ pub mod tests; pub use std::ops::ControlFlow; -pub use radn_derive::SharedFunctorAny; - pub use self::applicative_select::{ ApplicativeSelect, ApplicativeSelectExt, Selected, SelectedWrapped, }; diff --git a/src/func/shared.rs b/src/func/shared.rs index 7a8400e..1ffb872 100644 --- a/src/func/shared.rs +++ b/src/func/shared.rs @@ -1,3 +1,5 @@ +pub use radn_derive::SharedFunctorAny; + use super::*; pub trait SharedFunctorAny: WeakFunctorAny {