diff options
author | HampusM <hampus@hampusmat.com> | 2022-08-25 20:21:49 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-08-27 14:28:23 +0200 |
commit | 1c46b68581213ca8ae6200daa32f626b5389b4b0 (patch) | |
tree | 8da649471db7893a2347a2df383324b84ac226f0 /examples/unbound | |
parent | 8e862c7998d0b59c71d20cbcbbc57031f734b6fa (diff) |
refactor!: make DI container have single get function
BREAKING CHANGE: The DI container get_singleton & get_factory functions have been replaced by the get function now returning a enum
Diffstat (limited to 'examples/unbound')
-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 031a691..e9a8feb 100644 --- a/examples/unbound/main.rs +++ b/examples/unbound/main.rs @@ -19,11 +19,11 @@ fn main() -> Result<(), Box<dyn Error>> let di_container = bootstrap()?; - let dog = di_container.get_singleton::<dyn IDog>()?; + let dog = di_container.get::<dyn IDog>()?.singleton()?; dog.woof(); - let human = di_container.get::<dyn IHuman>()?; + let human = di_container.get::<dyn IHuman>()?.transient()?; human.make_pets_make_sounds(); |