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