faucet_source_postgres/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! # faucet-source-postgres
4//!
5//! PostgreSQL query source connector for the faucet-stream ecosystem.
6//!
7//! Connects to a PostgreSQL database, executes a configurable SQL query,
8//! and returns rows as `serde_json::Value` records.
9
10pub mod config;
11pub mod stream;
12
13pub use faucet_core::{FaucetError, Source};
14
15pub use config::PostgresSourceConfig;
16pub use stream::PostgresSource;