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