aboutsummaryrefslogtreecommitdiff
path: root/examples/basic
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-07-21 20:17:03 +0200
committerHampusM <hampus@hampusmat.com>2022-07-21 20:17:03 +0200
commit41b195c28cdb82854b8c97ecb8bf11c722da07cb (patch)
tree2223333f0221a65e1c80aef15864323da87ea9d3 /examples/basic
parenta78b75e64cbb7cf79d4a7405f3ba41570fedbfd7 (diff)
refactor: re-export dependency of error_stack
Diffstat (limited to 'examples/basic')
-rw-r--r--examples/basic/main.rs10
1 files changed, 3 insertions, 7 deletions
diff --git a/examples/basic/main.rs b/examples/basic/main.rs
index 956b79e..f96d963 100644
--- a/examples/basic/main.rs
+++ b/examples/basic/main.rs
@@ -2,8 +2,6 @@
#![deny(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]
-use syrette::errors::di_container::DIContainerError;
-
mod animals;
mod bootstrap;
mod interfaces;
@@ -12,19 +10,17 @@ use bootstrap::bootstrap;
use interfaces::dog::IDog;
use interfaces::human::IHuman;
-fn main() -> error_stack::Result<(), DIContainerError>
+fn main()
{
println!("Hello, world!");
let di_container = bootstrap();
- let dog = di_container.get::<dyn IDog>()?;
+ let dog = di_container.get::<dyn IDog>().unwrap();
dog.woof();
- let human = di_container.get::<dyn IHuman>()?;
+ let human = di_container.get::<dyn IHuman>().unwrap();
human.make_pets_make_sounds();
-
- Ok(())
}