forked from jmug/stoatchat
7 lines
235 B
Rust
7 lines
235 B
Rust
use std::collections::HashMap;
|
|
|
|
/// HashMap of user settings
|
|
/// Each key is mapped to a tuple consisting of the
|
|
/// revision timestamp and serialised data (in JSON format)
|
|
pub type UserSettings = HashMap<String, (i64, String)>;
|