//! Native backend module organization and minimal public interface.
//!
//! This module provides the native storage implementation for SQLiteGraph.
//! It implements file-based adjacency storage without SQLite dependency.
//! NO GraphBackend implementation is provided here - this is storage layer only.
// Module organization
// V3 B+Tree backend (Phase 63)
// Re-export public types for external use
pub use ;
pub use V3Backend as NativeGraphBackend;
// V3 re-exports
pub use ;