diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-21 19:50:42 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-21 19:50:42 +0200 |
commit | 18f60ba07893c79100c8c576a717059f3da33c84 (patch) | |
tree | ccfe5929b02c0c5a7db5397ba9a1f171294e6d63 /example/src/bootstrap.rs | |
parent | 2d1a6b2d432408d74eb57e0bda3f7434617e1070 (diff) |
docs: rename example folder to examples
Diffstat (limited to 'example/src/bootstrap.rs')
-rw-r--r-- | example/src/bootstrap.rs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/example/src/bootstrap.rs b/example/src/bootstrap.rs deleted file mode 100644 index a1a7b05..0000000 --- a/example/src/bootstrap.rs +++ /dev/null @@ -1,29 +0,0 @@ -use syrette::DIContainer; - -// Concrete implementations -use crate::animals::cat::Cat; -use crate::animals::cow::Cow; -use crate::animals::dog::Dog; -use crate::animals::human::Human; -// -// Interfaces -use crate::interfaces::cat::ICat; -use crate::interfaces::cow::{CowFactory, ICow}; -use crate::interfaces::dog::IDog; -use crate::interfaces::human::IHuman; - -pub fn bootstrap() -> DIContainer -{ - let mut di_container: DIContainer = DIContainer::new(); - - di_container.bind::<dyn IDog>().to::<Dog>(); - di_container.bind::<dyn ICat>().to::<Cat>(); - di_container.bind::<dyn IHuman>().to::<Human>(); - - di_container.bind::<CowFactory>().to_factory(&|moo_cnt| { - let cow: Box<dyn ICow> = Box::new(Cow::new(moo_cnt)); - cow - }); - - di_container -} |