aboutsummaryrefslogtreecommitdiff
path: root/examples/with-3rd-party
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-10-23 18:12:23 +0200
committerHampusM <hampus@hampusmat.com>2022-10-23 18:12:23 +0200
commit9e01cdf341a7866180b3a63d745f3b2d7578d28a (patch)
tree0c036b7b4a68e44b6eb2221bf7beb3c34fe9c1c8 /examples/with-3rd-party
parent740ef47d49e02ae2f2184f4c347d8eba8aee38fd (diff)
refactor!: reduce DI container coupling
BREAKING CHANGE: You now have to import the DI containers's interfaces to use the DI containers's methods
Diffstat (limited to 'examples/with-3rd-party')
-rw-r--r--examples/with-3rd-party/bootstrap.rs3
-rw-r--r--examples/with-3rd-party/main.rs6
2 files changed, 6 insertions, 3 deletions
diff --git a/examples/with-3rd-party/bootstrap.rs b/examples/with-3rd-party/bootstrap.rs
index 4fea754..9a55eb1 100644
--- a/examples/with-3rd-party/bootstrap.rs
+++ b/examples/with-3rd-party/bootstrap.rs
@@ -1,8 +1,9 @@
use std::error::Error;
use std::rc::Rc;
+use syrette::declare_default_factory;
+use syrette::di_container::blocking::prelude::*;
use syrette::ptr::TransientPtr;
-use syrette::{declare_default_factory, DIContainer};
use third_party_lib::Shuriken;
use crate::interfaces::ninja::INinja;
diff --git a/examples/with-3rd-party/main.rs b/examples/with-3rd-party/main.rs
index e48c78f..520038e 100644
--- a/examples/with-3rd-party/main.rs
+++ b/examples/with-3rd-party/main.rs
@@ -2,12 +2,14 @@
#![deny(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]
-use std::error::Error;
-
mod bootstrap;
mod interfaces;
mod ninja;
+use std::error::Error;
+
+use syrette::di_container::blocking::prelude::*;
+
use crate::bootstrap::bootstrap;
use crate::interfaces::ninja::INinja;