diff options
Diffstat (limited to 'src/commands/mod.rs')
| -rw-r--r-- | src/commands/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 8009093..2f18e9f 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -116,6 +116,12 @@ fn register_db(f: StandardFramework) -> StandardFramework { .desc("get meme stats") .cmd(stats) ) + .command("history", |c| c + .known_as("hist") + .guild_only(true) + .desc("history of recent messages") + .cmd(history) + ) } #[cfg(not(feature = "diesel"))] |
