aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unbound')
-rw-r--r--examples/unbound/bootstrap.rs2
-rw-r--r--examples/unbound/main.rs11
2 files changed, 7 insertions, 6 deletions
diff --git a/examples/unbound/bootstrap.rs b/examples/unbound/bootstrap.rs
index 04643dc..61e5326 100644
--- a/examples/unbound/bootstrap.rs
+++ b/examples/unbound/bootstrap.rs
@@ -1,7 +1,7 @@
use std::rc::Rc;
use anyhow::Result;
-use syrette::DIContainer;
+use syrette::di_container::blocking::prelude::*;
use crate::animal_store::AnimalStore;
use crate::animals::dog::Dog;
diff --git a/examples/unbound/main.rs b/examples/unbound/main.rs
index f8dddbb..29fa0d4 100644
--- a/examples/unbound/main.rs
+++ b/examples/unbound/main.rs
@@ -2,16 +2,17 @@
#![deny(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]
-use anyhow::Result;
-
mod animal_store;
mod animals;
mod bootstrap;
mod interfaces;
-use bootstrap::bootstrap;
-use interfaces::dog::IDog;
-use interfaces::human::IHuman;
+use anyhow::Result;
+use syrette::di_container::blocking::prelude::*;
+
+use crate::bootstrap::bootstrap;
+use crate::interfaces::dog::IDog;
+use crate::interfaces::human::IHuman;
fn main() -> Result<()>
{