wa-rs-sqlite-storage 0.2.0

SQLite storage backend for whatsapp-rust
Documentation
1
2
3
4
5
6
7
8
9
//! SQLite storage backend for whatsapp-rust
//!
//! This crate provides a SQLite-based storage implementation for the whatsapp-rust library.
//! It implements all the required storage traits from wa_rs_core::store::traits.

mod schema;
mod sqlite_store;

pub use sqlite_store::SqliteStore;