diff options
author | HampusM <hampus@hampusmat.com> | 2023-09-17 13:32:06 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-09-17 13:32:06 +0200 |
commit | a1ddd1bc6e1af0d98b87126d3e86da30bc1d3f1c (patch) | |
tree | d4a9cfd9e3970a955e27ac518a593f55e8ad8d9c /examples/generics/bootstrap.rs | |
parent | 3e3a853615e97ee7c3aef09736eae8170c6fd78e (diff) |
refactor!: make the blocking DI container not inside a Rc
BREAKING CHANGE: The blocking DI container is no longer inside of a Rc. This affects BindingBuilder, BindingScopeConfigurator, BindingWhenConfigurator & Injectable
Diffstat (limited to 'examples/generics/bootstrap.rs')
-rw-r--r-- | examples/generics/bootstrap.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/generics/bootstrap.rs b/examples/generics/bootstrap.rs index 98d03db..233cd59 100644 --- a/examples/generics/bootstrap.rs +++ b/examples/generics/bootstrap.rs @@ -1,11 +1,9 @@ -use std::rc::Rc; - use syrette::{di_container_bind, DIContainer}; use crate::interfaces::printer::IPrinter; use crate::printer::Printer; -pub fn bootstrap() -> Rc<DIContainer> +pub fn bootstrap() -> DIContainer { let mut di_container = DIContainer::new(); |