|
|
@ -5,7 +5,12 @@ use crate::database::Db;
|
|
|
|
use crate::queue::SendQueue;
|
|
|
|
use crate::queue::SendQueue;
|
|
|
|
|
|
|
|
|
|
|
|
impl Command {
|
|
|
|
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)
|
|
|
|
SendQueue::ok(token)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|