1mod error; 2mod contract; 3 4pub use error::*; 5pub use contract::Contract; 6 7pub trait Injectable { 8 fn __register<C: Contract>(container: &C); 9}