1//! SQLite storage backend for whatsapp-rust
2//!
3//! This crate provides a SQLite-based storage implementation for the whatsapp-rust library.
4//! It implements all the required storage traits from wacore::store::traits.
56mod schema;
7mod sqlite_store;
89pub use sqlite_store::SqliteStore;