From a1ddd1bc6e1af0d98b87126d3e86da30bc1d3f1c Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 17 Sep 2023 13:32:06 +0200 Subject: 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 --- examples/generics/bootstrap.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'examples/generics/bootstrap.rs') 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 +pub fn bootstrap() -> DIContainer { let mut di_container = DIContainer::new(); -- cgit v1.2.3-18-g5258