diff options
author | HampusM <hampus@hampusmat.com> | 2023-09-14 22:00:34 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-09-14 22:01:32 +0200 |
commit | 88a6d31399bd14da6574471a8df4423e63ef340f (patch) | |
tree | a33ec9299f6cc632419dd2c8c837b9380689c851 /tests/prevent_circular.rs | |
parent | 9bed6b4d2772fd020ea9eb6eaaba4ca014d96f94 (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 'tests/prevent_circular.rs')
-rw-r--r-- | tests/prevent_circular.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/prevent_circular.rs b/tests/prevent_circular.rs index 4b95dea..2abbac7 100644 --- a/tests/prevent_circular.rs +++ b/tests/prevent_circular.rs @@ -1,11 +1,10 @@ #![deny(clippy::all, clippy::pedantic)] #![allow(clippy::disallowed_names)] -use syrette::di_container::blocking::prelude::*; use syrette::errors::di_container::DIContainerError; use syrette::errors::injectable::InjectableError; -use syrette::injectable; use syrette::ptr::TransientPtr; +use syrette::{injectable, DIContainer}; #[derive(Debug)] struct Foo |