diff options
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( |
