- Add PostgreSQL client functionality for database interactions. - Add Redis client functionality for cache and data store operations. - Extend Rhai scripting with PostgreSQL and Redis client modules. - Add documentation and test cases for both clients.
11 lines
219 B
Rust
11 lines
219 B
Rust
// 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::*;
|