hooksmith-core 0.1.5

Shared HTTP client and WebhookSender trait for the hooksmith crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod client;
pub mod error;
pub mod retry;
pub mod sender;

#[cfg(feature = "mock")]
pub mod mock;

pub use client::{HttpClient, HttpClientBuilder, is_allowed_domain};
pub use error::CoreError;
pub use retry::RetryPolicy;
pub use sender::WebhookSender;