diff --git a/src/command/dispatch/help.rs b/src/command/dispatch/help.rs index 1b010c6..53542ca 100644 --- a/src/command/dispatch/help.rs +++ b/src/command/dispatch/help.rs @@ -5,9 +5,7 @@ use crate::database::Db; use crate::queue::SendQueue; impl Command { - pub fn dispatch_help(command: &Command, args: String, token: Token, db: &mut Db) -> SendQueue { - let mut send_queue = SendQueue::new(); - - send_queue + pub fn dispatch_help(_command: &Command, _args: String, token: Token, _db: &mut Db) -> SendQueue { + SendQueue::ok(token) } }