crabka_connect_postgres/lib.rs
1//! Postgres logical-decoding source connector for Crabka Connect.
2
3mod catalog;
4pub mod config;
5pub mod error;
6
7pub mod model;
8
9pub mod offset;
10
11pub mod pgoutput;
12
13pub mod schema;
14
15pub mod source;
16
17pub use config::PostgresSourceConfig;
18pub use error::PostgresConnectError;
19pub use model::{ColumnValue, EntityDifference, EntityKey, Operation, TableSchema};
20pub use offset::PgLsn;
21pub use source::PostgresWalSource;