- Add new documentation sections for PostgreSQL installer functions and usage examples. Improves clarity and completeness of the documentation. - Add new files and patterns to .gitignore to prevent unnecessary files from being committed to the repository. Improves repository cleanliness and reduces clutter.
13 lines
256 B
Rust
13 lines
256 B
Rust
// 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::*;
|