microunit/cmd/
mod.rs

1mod node;
2mod unit;
3
4pub use node::Command as NodeCommand;
5pub use unit::Command as UnitCommand;
6
7pub(crate) type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
8
9pub(crate) const DEFAULT_URL: &'static str = "http://127.0.0.1:21812";