reactive_graph_sys_json_model/entity/
load_json.rs1use crate::ComponentLoadJson;
2use crate::NAMESPACE_JSON;
3use reactive_graph_graph::entity_ty;
4use reactive_graph_reactive_model_api::entity_model;
5use reactive_graph_runtime_model::Action;
6use reactive_graph_std_base_model::Named;
7use reactive_graph_std_result_model::ResultAny;
8use reactive_graph_sys_file_model::File;
9
10entity_ty!(ENTITY_TYPE_LOAD_JSON, NAMESPACE_JSON, ENTITY_TYPE_NAME_LOAD_JSON, "load_json");
13
14entity_model!(LoadJson);
15impl ComponentLoadJson for LoadJson {}
16impl File for LoadJson {}
17impl Action for LoadJson {}
18impl Named for LoadJson {}
19impl ResultAny for LoadJson {}