aboutsummaryrefslogtreecommitdiff
path: root/examples/generics
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/generics
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/generics')
-rw-r--r--examples/generics/bootstrap.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/generics/bootstrap.rs b/examples/generics/bootstrap.rs
index 4034aa8..98d03db 100644
--- a/examples/generics/bootstrap.rs
+++ b/examples/generics/bootstrap.rs
@@ -1,7 +1,6 @@
use std::rc::Rc;
-use syrette::di_container::blocking::prelude::*;
-use syrette::di_container_bind;
+use syrette::{di_container_bind, DIContainer};
use crate::interfaces::printer::IPrinter;
use crate::printer::Printer;