aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/users/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lockchain-core/src/users/mod.rs')
-rw-r--r--lockchain-core/src/users/mod.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/lockchain-core/src/users/mod.rs b/lockchain-core/src/users/mod.rs
index 3fce31c..5fe1601 100644
--- a/lockchain-core/src/users/mod.rs
+++ b/lockchain-core/src/users/mod.rs
@@ -12,27 +12,18 @@
//!
//! `User` is also a serialisable struct which contains important
//! data to load and store them into a metadata store.
-#![allow(deprecated)]
mod auth;
mod user;
mod rights;
mod tokens;
-mod keystore;
mod secrets;
pub mod userstore;
pub use self::auth::pam_authenticate;
-pub use self::keystore::KeyStore;
pub use self::tokens::Token;
pub use self::user::User;
pub use errors::AuthError;
pub use self::rights::{Access, Role};
-
-use std::collections::HashMap;
-use {
- meta::MetaDomain,
- traits::{AutoEncoder, Base64AutoEncoder},
-};