init_system 0.1.0

Framework to wrap application init
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod get_dep;
mod subscription;

// macros
pub use init_system_macro::InitSystem;

pub use get_dep::*;
pub use subscription::*;

pub trait InitTask {
    type Deps;
    type InitDeps;
    type Res;
    fn init(init: Self, deps: Self::Deps, init_deps: Self::InitDeps) -> Self::Res;
}