whatsapp-rust-sqlite-storage 0.7.0

SQLite storage backend for whatsapp-rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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 wacore::store::traits.

mod schema;
mod shared;
mod sqlite_store;
mod wire;

pub use shared::SharedSqlite;
pub use sqlite_store::{ConnectionInitHook, SqliteStore, SqliteStoreConfig, Synchronous};