1 2 3 4 5 6 7 8 9 10 11 12
//! MySQL/MariaDB backend crate. //! //! Provides [`MysqlBackend`] for database operations and //! [`MysqlHandler`] implementing the MCP `ServerHandler` trait. mod connection; mod handler; mod operations; mod schema; pub use connection::MysqlBackend; pub use handler::MysqlHandler;