healthchecks 3.1.4

Simple library to notify healthchecks.io from inside applications
Documentation
#![doc = include_str!("../README.md")]
/// Error types for public API
pub mod errors;
/// Functions for interacting with the Healthchecks management API.
pub mod manage;
/// API response models for data returned from the various Healthchecks APIs.
pub mod model;
/// Functions for interacting with the Healthchecks pinging API.
pub mod ping;
/// Internal utility functions
pub(crate) mod util;