acts 0.17.2

a fast, lightweight, extensiable workflow engine
Documentation
1
2
3
4
5
6
7
8
#[macro_export]
macro_rules! include_json {
    ($file:expr) => {{
        let json_str = include_str!($file);
        serde_json::from_str::<serde_json::Value>(json_str)
            .expect(&format!("Failed to parse JSON file: {}", $file))
    }};
}