diff options
| author | Gustav Sörnäs <gustav@sornas.net> | 2020-10-14 19:29:34 +0200 |
|---|---|---|
| committer | Gustav Sörnäs <gustav@sornas.net> | 2020-10-14 19:29:34 +0200 |
| commit | 8f32d34f1cf31cfd10d07e623842dd3f7fc86e8e (patch) | |
| tree | 18b85d859f34964cd3cd20572a45a43d0afe8e62 /mumd/src/command.rs | |
| parent | af272afbcd9e0e283b88f37f2bf3d7b4da604321 (diff) | |
| download | mum-8f32d34f1cf31cfd10d07e623842dd3f7fc86e8e.tar.gz | |
cargo fmt
Diffstat (limited to 'mumd/src/command.rs')
| -rw-r--r-- | mumd/src/command.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mumd/src/command.rs b/mumd/src/command.rs index 1104671..b4bd1b7 100644 --- a/mumd/src/command.rs +++ b/mumd/src/command.rs @@ -1,9 +1,9 @@ use crate::state::{Channel, Server, State, StatePhase}; +use log::*; use std::collections::HashMap; use std::sync::{Arc, Mutex}; use tokio::sync::mpsc; -use log::*; #[derive(Clone, Debug)] pub enum Command { @@ -29,7 +29,7 @@ pub enum CommandResponse { Status { username: Option<String>, server_state: Server, - } + }, } pub async fn handle( |
