Send notifications/messages to RocketChat from command-line or from inside your code.
bash
cargo install rocketchat_client_rs
To run the tests:
make test
As a command line tool:
bash
$ rocketchat-client --channel "#test-logs" --webhook "https://blah.at.blah-blah-blah.com" --text "hi"
As a library: ```rust use rocketchatclientrs::RocketClient;
fn main() { let response = RocketClient::new("https://blah.at.blah-blah-blah.com") .withchannel("#test-logs") .withtext("Hi world") .withdefault_hostname() .execute(); } ```
$ cargo doc --no-deps
MIT
The Azure pipeline template has been taken from https://github.com/graphql-rust/juniper here.