diff options
author | HampusM <hampus@hampusmat.com> | 2023-09-14 19:41:56 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-09-14 21:17:37 +0200 |
commit | 9bed6b4d2772fd020ea9eb6eaaba4ca014d96f94 (patch) | |
tree | dff0d7768f4a56c9d75e4a6c89974891373e997b /examples/with-3rd-party | |
parent | 9a7cf8cfd376da09c982606aa79f253319dfe382 (diff) |
refactor!: remove blocking DI container interface
BREAKING CHANGE: IDIContainer have been removed and multiple structs no longer take a DI container generic parameter
Diffstat (limited to 'examples/with-3rd-party')
-rw-r--r-- | examples/with-3rd-party/main.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/with-3rd-party/main.rs b/examples/with-3rd-party/main.rs index 520038e..e9f8c89 100644 --- a/examples/with-3rd-party/main.rs +++ b/examples/with-3rd-party/main.rs @@ -8,8 +8,6 @@ mod ninja; use std::error::Error; -use syrette::di_container::blocking::prelude::*; - use crate::bootstrap::bootstrap; use crate::interfaces::ninja::INinja; |