aboutsummaryrefslogtreecommitdiff
path: root/examples/basic/bootstrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/basic/bootstrap.rs')
-rw-r--r--examples/basic/bootstrap.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/basic/bootstrap.rs b/examples/basic/bootstrap.rs
index 10a7041..4af2d82 100644
--- a/examples/basic/bootstrap.rs
+++ b/examples/basic/bootstrap.rs
@@ -18,8 +18,8 @@ pub fn bootstrap() -> DIContainer
.bind::<dyn IDog>()
.to_singleton::<Dog>()
.unwrap();
- di_container.bind::<dyn ICat>().to::<Cat>();
- di_container.bind::<dyn IHuman>().to::<Human>();
+ di_container.bind::<dyn ICat>().to::<Cat>().unwrap();
+ di_container.bind::<dyn IHuman>().to::<Human>().unwrap();
di_container
}