luminos-contracts 0.1.1

luminos Contracts
Documentation
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);
}