aboutsummaryrefslogtreecommitdiff
path: root/examples/async/bootstrap.rs
blob: 7e1d2cdcf286904b34e310cda7ceef83a7d92beb (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
use std::sync::Arc;

use anyhow::Result;
use syrette::async_di_container::AsyncDIContainer;

// Concrete implementations
use crate::animals::cat::Cat;
use crate::animals::dog::Dog;
use crate::animals::human::Human;
//
// Interfaces
use crate::interfaces::cat::ICat;
use crate::interfaces::dog::IDog;
use crate::interfaces::human::IHuman;

pub async fn bootstrap() -> Result<Arc<AsyncDIContainer>>
{
    let mut di_container = AsyncDIContainer::new();

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

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

    Ok(di_container)
}