whatsapp_rust_sqlite_storage/lib.rs
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.
5
6mod schema;
7mod shared;
8mod sqlite_store;
9mod wire;
10
11pub use shared::SharedSqlite;
12pub use sqlite_store::{ConnectionInitHook, SqliteStore, SqliteStoreConfig, Synchronous};