aboutsummaryrefslogtreecommitdiff
path: root/examples/generics/bootstrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/generics/bootstrap.rs')
-rw-r--r--examples/generics/bootstrap.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/generics/bootstrap.rs b/examples/generics/bootstrap.rs
index 072350e..752a39b 100644
--- a/examples/generics/bootstrap.rs
+++ b/examples/generics/bootstrap.rs
@@ -1,3 +1,5 @@
+use std::rc::Rc;
+
use syrette::{di_container_bind, DIContainer};
// Interfaces
@@ -6,7 +8,7 @@ use crate::interfaces::printer::IPrinter;
// Implementations
use crate::printer::Printer;
-pub fn bootstrap() -> DIContainer
+pub fn bootstrap() -> Rc<DIContainer>
{
let mut di_container = DIContainer::new();