faucet_sink_jsonl/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-sink-jsonl
4//!
5//! JSON Lines file sink connector for the faucet-stream ecosystem.
6//!
7//! Writes `serde_json::Value` records to a file in [JSON Lines](https://jsonlines.org/)
8//! format (one JSON object per line).
9
10pub mod config;
11pub(crate) mod probe;
12pub mod sink;
13
14pub use faucet_core::{FaucetError, Sink};
15
16pub use config::JsonlSinkConfig;
17pub use sink::JsonlSink;