aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/users/user.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lockchain-core/src/users/user.rs')
-rw-r--r--lockchain-core/src/users/user.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/lockchain-core/src/users/user.rs b/lockchain-core/src/users/user.rs
index 1f7c9a5..beaba1a 100644
--- a/lockchain-core/src/users/user.rs
+++ b/lockchain-core/src/users/user.rs
@@ -1,9 +1,10 @@
//! User representation module
use super::rights::{Access, Role};
-use crypto::{encoding, hashing, random};
+use crate::crypto::{encoding, hashing, random};
use std::collections::HashMap;
-use traits::AutoEncoder;
+use crate::traits::AutoEncoder;
+use serde::{Serialize, Deserialize};
/// A generic user representation
///