aboutsummaryrefslogtreecommitdiff
path: root/examples/basic
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/basic
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/basic')
-rw-r--r--examples/basic/bootstrap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basic/bootstrap.rs b/examples/basic/bootstrap.rs
index 1cad500..2c45676 100644
--- a/examples/basic/bootstrap.rs
+++ b/examples/basic/bootstrap.rs
@@ -1,7 +1,7 @@
use std::error::Error;
use std::rc::Rc;
-use syrette::di_container::blocking::prelude::*;
+use syrette::DIContainer;
use crate::animals::cat::Cat;
use crate::animals::dog::Dog;