diff options
Diffstat (limited to 'examples/unbound/bootstrap.rs')
-rw-r--r-- | examples/unbound/bootstrap.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/unbound/bootstrap.rs b/examples/unbound/bootstrap.rs index 7835619..dc8468c 100644 --- a/examples/unbound/bootstrap.rs +++ b/examples/unbound/bootstrap.rs @@ -1,10 +1,12 @@ 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; @@ -20,4 +22,9 @@ pub fn bootstrap() -> DIContainer di_container.bind::<dyn IHuman>().to::<Human>().unwrap(); di_container + .bind::<dyn IAnimalStore>() + .to::<AnimalStore>() + .unwrap(); + + di_container } |