aboutsummaryrefslogtreecommitdiff
path: root/examples/factory
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-09-14 22:00:34 +0200
committerHampusM <hampus@hampusmat.com>2023-09-14 22:01:32 +0200
commit88a6d31399bd14da6574471a8df4423e63ef340f (patch)
treea33ec9299f6cc632419dd2c8c837b9380689c851 /examples/factory
parent9bed6b4d2772fd020ea9eb6eaaba4ca014d96f94 (diff)
refactor!: remove blocking DI container prelude module
BREAKING CHANGE: The blocking DI container prelude module have been removed as it is no longer necessary seeing as the blocking DI container interface have been removed
Diffstat (limited to 'examples/factory')
-rw-r--r--examples/factory/bootstrap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/factory/bootstrap.rs b/examples/factory/bootstrap.rs
index e535dd2..f8bef6e 100644
--- a/examples/factory/bootstrap.rs
+++ b/examples/factory/bootstrap.rs
@@ -1,8 +1,8 @@
use std::error::Error;
use std::rc::Rc;
-use syrette::di_container::blocking::prelude::*;
use syrette::ptr::TransientPtr;
+use syrette::DIContainer;
use crate::interfaces::user::{IUser, IUserFactory};
use crate::interfaces::user_manager::IUserManager;