rust-dicore 0.2.6

rust-dicore: A Rust dependency injection framework inspired by Microsoft.Extensions.DependencyInjection
Documentation
1
2
3
4
5
use crate::entry::ServiceEntry;
use std::any::TypeId;
use std::collections::HashMap;

pub type ServiceStore = HashMap<TypeId, Vec<ServiceEntry>>;