aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/bootstrap.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-08-17 22:04:17 +0200
committerHampusM <hampus@hampusmat.com>2023-08-17 22:04:17 +0200
commit8aeb7ad439b67228a0abc46b259967e8c91f8a97 (patch)
treed7758a573c0bc805b0fe42cdd18df628109c5ffd /examples/unbound/bootstrap.rs
parent800e164a83388aa5ca7675f8031b0f0d7c6b6051 (diff)
docs: remove the 'unbound' example
This was not at all a useful example
Diffstat (limited to 'examples/unbound/bootstrap.rs')
-rw-r--r--examples/unbound/bootstrap.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/unbound/bootstrap.rs b/examples/unbound/bootstrap.rs
deleted file mode 100644
index 61e5326..0000000
--- a/examples/unbound/bootstrap.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-use std::rc::Rc;
-
-use anyhow::Result;
-use syrette::di_container::blocking::prelude::*;
-
-use crate::animal_store::AnimalStore;
-use crate::animals::dog::Dog;
-use crate::animals::human::Human;
-use crate::interfaces::animal_store::IAnimalStore;
-use crate::interfaces::dog::IDog;
-use crate::interfaces::human::IHuman;
-
-pub fn bootstrap() -> Result<Rc<DIContainer>>
-{
- let mut di_container = DIContainer::new();
-
- di_container
- .bind::<dyn IDog>()
- .to::<Dog>()?
- .in_singleton_scope()?;
-
- di_container.bind::<dyn IHuman>().to::<Human>()?;
-
- di_container
- .bind::<dyn IAnimalStore>()
- .to::<AnimalStore>()?;
-
- Ok(di_container)
-}