Skip to main content

wa_rs_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 wa_rs_core::store::traits.
5
6mod schema;
7mod sqlite_store;
8
9pub use sqlite_store::SqliteStore;