peace_resources 0.0.13

Runtime resources for the peace automation framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Runtime resources for the peace automation framework.
//!
//! This crate contains resources necessary for the peace framework to work, and
//! are likely to be common use for all applications.

// Re-exports
pub use resman::*;
pub use type_reg;

pub use crate::{item_rt_id::ItemRtId, resources::Resources};

pub mod internal;
pub mod paths;
pub mod resources;
pub mod states;

mod item_rt_id;