// PostgreSQL client module // // This module provides a PostgreSQL client for interacting with PostgreSQL databases. mod postgresclient; #[cfg(test)] mod tests; // Re-export the public API pub use postgresclient::*;