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.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/unbound/bootstrap.rs b/examples/unbound/bootstrap.rs
index f59bc83..30366a6 100644
--- a/examples/unbound/bootstrap.rs
+++ b/examples/unbound/bootstrap.rs
@@ -1,5 +1,4 @@
-use std::error::Error;
-
+use anyhow::Result;
use syrette::DIContainer;
// Concrete implementations
@@ -12,7 +11,7 @@ use crate::interfaces::animal_store::IAnimalStore;
use crate::interfaces::dog::IDog;
use crate::interfaces::human::IHuman;
-pub fn bootstrap() -> Result<DIContainer, Box<dyn Error>>
+pub fn bootstrap() -> Result<DIContainer>
{
let mut di_container: DIContainer = DIContainer::new();