database_mcp_postgres/lib.rs
1//! `PostgreSQL` backend crate.
2//!
3//! Provides [`PostgresBackend`] for database operations and
4//! [`PostgresHandler`] implementing the MCP `ServerHandler` trait.
5
6mod connection;
7mod handler;
8mod operations;
9mod schema;
10
11pub use connection::PostgresBackend;
12pub use handler::PostgresHandler;