optimising imports

optimising imports
This commit is contained in:
michael-bailey 2020-09-27 16:48:38 +01:00
parent 2e6c6b9e62
commit ef0d2c23d9
1 changed files with 5 additions and 4 deletions

View File

@ -43,11 +43,12 @@ fn main() -> Result<(), ErrorKind> {
// MARK: - general testing zone // MARK: - general testing zone
#[cfg(test)] #[cfg(test)]
mod tests { 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::{thread, time};
use std::collections::HashMap;
use crate::client_api::ClientApi;
use crate::commands::Commands;
use crate::server::server_profile::Server;
#[test] #[test]
fn test_server_info() { fn test_server_info() {