diff options
author | HampusM <hampus@hampusmat.com> | 2022-09-17 12:57:18 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-09-17 12:57:18 +0200 |
commit | e8e48906a3899e71c9c9d86a3d4528cb7d17e5b9 (patch) | |
tree | 6c0eea09dff3be733693f0db0f521bd2d1f2a3e5 /examples/basic | |
parent | ea0309436b55d72f57478ed6f74bf31d000f5366 (diff) |
refactor!: make DI container be used inside of a Rc
BREAKING CHANGE: The DI container is to be used inside of a Rc & it also no longer implements Default
Diffstat (limited to 'examples/basic')
-rw-r--r-- | examples/basic/bootstrap.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/basic/bootstrap.rs b/examples/basic/bootstrap.rs index 4e02dc3..30f6df3 100644 --- a/examples/basic/bootstrap.rs +++ b/examples/basic/bootstrap.rs @@ -1,4 +1,5 @@ use std::error::Error; +use std::rc::Rc; use syrette::DIContainer; @@ -12,9 +13,9 @@ use crate::interfaces::cat::ICat; use crate::interfaces::dog::IDog; use crate::interfaces::human::IHuman; -pub fn bootstrap() -> Result<DIContainer, Box<dyn Error>> +pub fn bootstrap() -> Result<Rc<DIContainer>, Box<dyn Error>> { - let mut di_container: DIContainer = DIContainer::new(); + let mut di_container = DIContainer::new(); di_container .bind::<dyn IDog>() |