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