help command rework

This commit is contained in:
2020-11-30 21:55:34 +00:00
parent 268fcab8c5
commit 167a5a404f
4 changed files with 91 additions and 17 deletions

View File

@ -1,7 +1,7 @@
pub const DAY: u64 = 86_400;
pub const HOUR: u64 = 3_600;
pub const MINUTE: u64 = 60;
pub const HELP_STRINGS: [&'static str; 21] = [
pub const HELP_STRINGS: [&'static str; 22] = [
"help/lang",
"help/timezone",
"help/prefix",
@ -23,6 +23,7 @@ pub const HELP_STRINGS: [&'static str; 21] = [
"help/todo",
"help/todos",
"help/todoc",
"help/timer",
];
pub const CHARACTERS: &str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_";