hiqlite 0.13.0

Hiqlite - highly-available, embeddable, raft-based SQLite + cache
1
2
3
4
5
6
7
8
9
use crate::store::state_machine::memory::notify_handler::NotifyRequest;
use crate::Client;

pub struct AppStateProxy {
    pub client: Client,
    pub secret_api: String,
    pub tx_notify: flume::Sender<NotifyRequest>,
    // pub dashboard_password: String,
}