reactive_graph_runtime_model/component/
action.rs

1use crate::NAMESPACE_CORE;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6pub const PROPERTY_RESULT: &str = "result";
7
8properties!(ActionProperties, (TRIGGER, "trigger", false));
9
10component_ty!(COMPONENT_ACTION, NAMESPACE_CORE, COMPONENT_NAME_ACTION, "action");
11
12component_model!(Action, trigger);