matrix-rust-sdk/src/state/state_store.rs
2020-04-15 17:55:27 -04:00

9 lines
188 B
Rust

use super::StateStore;
/// A default `StateStore` implementation that serializes state as json
/// and saves it to disk.
pub struct JsonStore {}
// impl StateStore for JsonStore {
// }