aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 6596a32..74e6e3f 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -128,6 +128,12 @@ fn register_db(f: StandardFramework) -> StandardFramework {
.desc("history of recent messages")
.cmd(history)
)
+ .command("rarememe", |c| c
+ .known_as("rare_meme")
+ .guild_only(true)
+ .desc("deliver an underutilized meme")
+ .cmd(rare_meme)
+ )
}
#[cfg(not(feature = "diesel"))]