redarrow-rust
Execute commands on remote servers.
client example
let client = new;
let result = client.run_command;
run server
export RUST_LOG="actix_web=info"
redarrow-server -c misc/example.conf
run client
redarrow-client uptime
Execute commands on remote servers.
let client = webclient::Client::new(host, 4205, command, arguments);
let result = client.run_command();
export RUST_LOG="actix_web=info"
redarrow-server -c misc/example.conf
redarrow-client uptime