From 8e862c7998d0b59c71d20cbcbbc57031f734b6fa Mon Sep 17 00:00:00 2001 From: HampusM Date: Mon, 22 Aug 2022 19:13:19 +0200 Subject: refactor!: move specifying binding scope to a binding scope configurator BREAKING CHANGE: Specifying the scope of a DI container binding is now done with a binding scope configurator --- examples/unbound/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/unbound/main.rs') 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> { println!("Hello, world!"); - let di_container = bootstrap(); + let di_container = bootstrap()?; - let dog = di_container.get_singleton::().unwrap(); + let dog = di_container.get_singleton::()?; dog.woof(); -- cgit v1.2.3-18-g5258