derive-dynamic-node 0.2.1

Derive macro work creating Grapl plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate derive_dynamic_node;
extern crate graph_descriptions;

use derive_dynamic_node::DynamicNode as DN;

#[derive(DN)]
pub struct Ec2Instance2 {
    arn: String,
    launch_time: u64,
}

fn main() {}