syrette 0.4.2

The convenient dependency injection framework
Documentation
#![deny(clippy::all)]
#![deny(clippy::pedantic)]
#![allow(clippy::module_name_repetitions)]

use std::error::Error;

mod animals;
mod bootstrap;
mod interfaces;

use bootstrap::bootstrap;
use interfaces::dog::IDog;
use interfaces::human::IHuman;
use syrette::di_container::blocking::prelude::*;

fn main() -> Result<(), Box<dyn Error>>
{
    println!("Hello, world!");

    let di_container = bootstrap()?;

    let dog = di_container.get::<dyn IDog>()?.singleton()?;

    dog.woof();

    let human = di_container.get::<dyn IHuman>()?.transient()?;

    human.make_pets_make_sounds();

    Ok(())
}