aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/bootstrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unbound/bootstrap.rs')
-rw-r--r--examples/unbound/bootstrap.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/unbound/bootstrap.rs b/examples/unbound/bootstrap.rs
index 30366a6..8df6678 100644
--- a/examples/unbound/bootstrap.rs
+++ b/examples/unbound/bootstrap.rs
@@ -1,3 +1,5 @@
+use std::rc::Rc;
+
use anyhow::Result;
use syrette::DIContainer;
@@ -11,9 +13,9 @@ use crate::interfaces::animal_store::IAnimalStore;
use crate::interfaces::dog::IDog;
use crate::interfaces::human::IHuman;
-pub fn bootstrap() -> Result<DIContainer>
+pub fn bootstrap() -> Result<Rc<DIContainer>>
{
- let mut di_container: DIContainer = DIContainer::new();
+ let mut di_container = DIContainer::new();
di_container
.bind::<dyn IDog>()