Simple Rust library to interact with healthchecks.io
Go to file
Harsh Shandilya 4eb86f6053
github: add README
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2020-06-06 03:55:07 +05:30
examples Initial commit 2020-06-06 03:35:24 +05:30
src config: add UUID validation 2020-06-06 03:42:15 +05:30
.gitignore Initial commit 2020-06-06 03:35:24 +05:30
Cargo.toml github: add README 2020-06-06 03:55:07 +05:30
LICENSE-APACHE github: add README 2020-06-06 03:55:07 +05:30
LICENSE-MIT github: add README 2020-06-06 03:55:07 +05:30
README.md github: add README 2020-06-06 03:55:07 +05:30

README.md

healthchecks-rs

A simple Rust library that allows pinging healthchecks.io to indicate success or failure of a task.

Usage

Usage is super simple!

extern crate healthchecks;

use healthchecks::config::create_config;

fn main() {
    let config = create_config("my-uuid-that-is-definitely-not-real");
    config.report_success();
    config.report_failure();
}

Licensing

Dual licensed under Apache 2.0 or MIT at your option.