diff options
Diffstat (limited to 'examples/unbound/main.rs')
-rw-r--r-- | examples/unbound/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/unbound/main.rs b/examples/unbound/main.rs index 47629e4..031a691 100644 --- a/examples/unbound/main.rs +++ b/examples/unbound/main.rs @@ -17,9 +17,9 @@ fn main() -> Result<(), Box<dyn Error>> { println!("Hello, world!"); - let di_container = bootstrap(); + let di_container = bootstrap()?; - let dog = di_container.get_singleton::<dyn IDog>().unwrap(); + let dog = di_container.get_singleton::<dyn IDog>()?; dog.woof(); |