reactive_graph_command_model/lib.rs
1pub use crate::component::COMPONENT_COMMAND;
2pub use crate::component::COMPONENT_NAME_COMMAND;
3pub use crate::component::CommandProperties;
4pub use crate::entity::arg::CommandArg;
5pub use crate::entity::arg::CommandArgs;
6pub use crate::entity::command::Command;
7
8pub mod builder;
9pub mod component;
10pub mod entity;
11pub mod error;
12
13pub const NAMESPACE_COMMAND: &str = "command";