diff options
Diffstat (limited to 'examples/factory')
-rw-r--r-- | examples/factory/interfaces/user.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/factory/interfaces/user.rs b/examples/factory/interfaces/user.rs index aafd0cb..75fbc87 100644 --- a/examples/factory/interfaces/user.rs +++ b/examples/factory/interfaces/user.rs @@ -1,5 +1,4 @@ use syrette::factory; -use syrette::ptr::TransientPtr; pub trait IUser { @@ -9,5 +8,4 @@ pub trait IUser } #[factory] -pub type IUserFactory = - dyn Fn(&'static str, &'static str, &'static str) -> TransientPtr<dyn IUser>; +pub type IUserFactory = dyn Fn(&'static str, &'static str, &'static str) -> dyn IUser; |