aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unbound')
-rw-r--r--examples/unbound/bootstrap.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/unbound/bootstrap.rs b/examples/unbound/bootstrap.rs
index 8df6678..04643dc 100644
--- a/examples/unbound/bootstrap.rs
+++ b/examples/unbound/bootstrap.rs
@@ -3,12 +3,9 @@ use std::rc::Rc;
use anyhow::Result;
use syrette::DIContainer;
-// Concrete implementations
use crate::animal_store::AnimalStore;
use crate::animals::dog::Dog;
use crate::animals::human::Human;
-//
-// Interfaces
use crate::interfaces::animal_store::IAnimalStore;
use crate::interfaces::dog::IDog;
use crate::interfaces::human::IHuman;