From a7855949e79b5dfb1bfafcf2ecb596b6d90fd641 Mon Sep 17 00:00:00 2001 From: rasul Date: Sun, 5 Apr 2020 15:04:39 -0500 Subject: [PATCH] rustfmt --- src/command/dispatch/help.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/command/dispatch/help.rs b/src/command/dispatch/help.rs index 53542ca..8f2ad16 100644 --- a/src/command/dispatch/help.rs +++ b/src/command/dispatch/help.rs @@ -5,7 +5,12 @@ use crate::database::Db; use crate::queue::SendQueue; impl Command { - pub fn dispatch_help(_command: &Command, _args: String, token: Token, _db: &mut Db) -> SendQueue { + pub fn dispatch_help( + _command: &Command, + _args: String, + token: Token, + _db: &mut Db, + ) -> SendQueue { SendQueue::ok(token) } }