oxur-component 0.1.2

Enabling the creation of application components with lifecycle and dependency support
Documentation
1
2
3
4
5
6
7
8
9
pub use self::deps::*;

pub mod deps;

#[derive(Debug)]
pub struct Component {
    pub name: &'static str,
    pub dependencies: Vec<&'static str>,
}