From fa472112a82e2eca052cd8ed0a09c2849a665f67 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Mon, 28 May 2018 21:03:26 +0000 Subject: Move Admin, User and Authenticate to auth module --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 41603a0..9dad9f9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -87,17 +87,17 @@ extern crate libc; extern crate nitrokey_sys; extern crate rand; +mod auth; mod config; mod device; -mod misc; mod otp; mod util; #[cfg(test)] mod tests; pub use config::Config; -pub use device::{connect, Admin, Device, DeviceWrapper, Pro, User}; -pub use misc::Authenticate; +pub use device::{connect, Device, DeviceWrapper, Pro}; +pub use auth::{Admin, Authenticate, User}; pub use otp::{ConfigureOtp, GenerateOtp, OtpMode, OtpSlotData}; pub use util::{CommandError, CommandStatus, LogLevel}; -- cgit v1.2.1