From ef0d2c23d9fbdaa18ef790bee5fbb5d5acadc2d0 Mon Sep 17 00:00:00 2001 From: michael-bailey Date: Sun, 27 Sep 2020 16:48:38 +0100 Subject: [PATCH] optimising imports optimising imports --- src/main.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 0269b99..f29531a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -43,11 +43,12 @@ fn main() -> Result<(), ErrorKind> { // MARK: - general testing zone #[cfg(test)] mod tests { - use crate::server::server_profile::Server; - use crate::client_api::ClientApi; - use std::collections::HashMap; - use crate::commands::Commands; use std::{thread, time}; + use std::collections::HashMap; + + use crate::client_api::ClientApi; + use crate::commands::Commands; + use crate::server::server_profile::Server; #[test] fn test_server_info() {