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