diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-27 15:17:33 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-31 12:15:18 +0200 |
commit | 3fbf26181f1b4b9e594debb103fd347bd93240ea (patch) | |
tree | 63cf13edb5ea21a6cbbcfcf474611820382a5048 /examples/factory/bootstrap.rs | |
parent | 224e59112e65ce6cbafe5a87dba031dd11e936a8 (diff) |
refactor!: rename InterfacePtr to TransientPtr
BREAKING CHANGE: InterfacePtr has been renamed to TransientPtr
Diffstat (limited to 'examples/factory/bootstrap.rs')
-rw-r--r-- | examples/factory/bootstrap.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/factory/bootstrap.rs b/examples/factory/bootstrap.rs index 5086b1a..1967c6a 100644 --- a/examples/factory/bootstrap.rs +++ b/examples/factory/bootstrap.rs @@ -1,4 +1,4 @@ -use syrette::ptr::InterfacePtr; +use syrette::ptr::TransientPtr; use syrette::DIContainer; // Interfaces @@ -14,8 +14,8 @@ pub fn bootstrap() -> DIContainer di_container .bind::<IUserFactory>() .to_factory(&|name, date_of_birth, password| { - let user: InterfacePtr<dyn IUser> = - InterfacePtr::new(User::new(name, date_of_birth, password)); + let user: TransientPtr<dyn IUser> = + TransientPtr::new(User::new(name, date_of_birth, password)); user }); |