aboutsummaryrefslogtreecommitdiff
path: root/examples/basic/bootstrap.rs
blob: 95632f29cff5bea51651e0f6aa8650de1a137a12 (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
use std::error::Error;

use syrette::DIContainer;

use crate::animals::cat::Cat;
use crate::animals::dog::Dog;
use crate::animals::human::Human;
use crate::interfaces::cat::ICat;
use crate::interfaces::dog::IDog;
use crate::interfaces::human::IHuman;

pub fn bootstrap() -> Result<DIContainer, Box<dyn Error>>
{
    let mut di_container = DIContainer::new();

    di_container
        .bind::<dyn IDog>()
        .to::<Dog>()?
        .in_singleton_scope()?;

    di_container.bind::<dyn ICat>().to::<Cat>()?;
    di_container.bind::<dyn IHuman>().to::<Human>()?;

    Ok(di_container)
}