diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-03-26 01:50:16 +0100 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-03-26 01:50:16 +0100 |
| commit | c22a8731df928ebce1859728cd55873503f72982 (patch) | |
| tree | f71aa4f2d076313a6d9fabd82c361314d8b1b06f /mumctl | |
| parent | 8afd49fcb78bd725ef602e48b73d42a91673d0c5 (diff) | |
| download | mum-c22a8731df928ebce1859728cd55873503f72982.tar.gz | |
clean up imports
Diffstat (limited to 'mumctl')
| -rw-r--r-- | mumctl/src/main.rs | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/mumctl/src/main.rs b/mumctl/src/main.rs index 123f5cd..018bc3a 100644 --- a/mumctl/src/main.rs +++ b/mumctl/src/main.rs @@ -1,15 +1,10 @@ use clap::{App, AppSettings, Arg, Shell, SubCommand, ArgMatches}; use colored::Colorize; -use log::{error, warn}; -use log::{Record, Level, Metadata, LevelFilter}; +use log::{Record, Level, Metadata, LevelFilter, error, warn}; use mumlib::command::{Command, CommandResponse}; -use mumlib::config; -use mumlib::config::{ServerConfig, Config}; +use mumlib::config::{self, ServerConfig, Config}; use mumlib::state::Channel; -use std::io::{BufRead, Write}; -use std::{io::{self, Read}, iter, fmt}; -use std::fmt::{Display, Formatter}; -use std::os::unix::net::UnixStream; +use std::{io::{self, Read, BufRead, Write}, iter, fmt::{Display, Formatter}, os::unix::net::UnixStream}; const INDENTATION: &str = " "; |
