From 9e01cdf341a7866180b3a63d745f3b2d7578d28a Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 23 Oct 2022 18:12:23 +0200 Subject: refactor!: reduce DI container coupling BREAKING CHANGE: You now have to import the DI containers's interfaces to use the DI containers's methods --- examples/with-3rd-party/bootstrap.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/with-3rd-party/bootstrap.rs') diff --git a/examples/with-3rd-party/bootstrap.rs b/examples/with-3rd-party/bootstrap.rs index 4fea754..9a55eb1 100644 --- a/examples/with-3rd-party/bootstrap.rs +++ b/examples/with-3rd-party/bootstrap.rs @@ -1,8 +1,9 @@ use std::error::Error; use std::rc::Rc; +use syrette::declare_default_factory; +use syrette::di_container::blocking::prelude::*; use syrette::ptr::TransientPtr; -use syrette::{declare_default_factory, DIContainer}; use third_party_lib::Shuriken; use crate::interfaces::ninja::INinja; -- cgit v1.2.3-18-g5258