aboutsummaryrefslogtreecommitdiff
path: root/lockchain-files/src/userstore.rs
blob: 1d01db69b4925395295e804fc44e0aea18981448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module maps the lockchain internal `UserStore` into a
//! structure that can be saved to disk.

use lcc::users::UserStore;

#[derive(Debug)]
pub struct UserStoreMapper {
    inner: UserStore,
}

impl UserStoreMapper {
    pub fn new(store: UserStore) -> Store {
        Self { inner: store }
    }
}