aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/bootstrap.rs
blob: 8df66786930e6409031daa44d7fee72b27f7274a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use std::rc::Rc;

use anyhow::Result;
use syrette::DIContainer;

// Concrete implementations
use crate::animal_store::AnimalStore;
use crate::animals::dog::Dog;
use crate::animals::human::Human;
//
// Interfaces
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)
}