//! SQLite-specific backend implementation for GraphBackend trait.
//!
//! This module provides the concrete SQLite backend implementation that wraps
//! SqliteGraph and implements the GraphBackend trait. It includes the main
//! SqliteGraphBackend type and all supporting types needed for SQLite operations.
// Module organization
// Re-export the main backend implementation
pub use SqliteGraphBackend;
// Re-export public types for external use
// Future extension points for SQLite backend API
pub use ;