froodi 1.0.0-beta.1

An ergonomic Rust IoC container
Documentation
1
2
3
4
use alloc::{collections::BTreeMap, sync::Arc};
use core::any::{Any, TypeId};

pub(crate) type Map = BTreeMap<TypeId, Arc<dyn Any + Send + Sync>>;