faucet-source-webhook 1.0.0

Webhook receiver source connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-source-webhook
//!
//! A webhook receiver source connector that starts a temporary HTTP server,
//! collects incoming POST payloads, and returns them as records.

pub mod config;
pub mod stream;

pub use faucet_core::{FaucetError, Source};

pub use config::WebhookSourceConfig;
pub use stream::WebhookSource;