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.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 74e6e3f..3ceb15f 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -134,6 +134,11 @@ fn register_db(f: StandardFramework) -> StandardFramework {
.desc("deliver an underutilized meme")
.cmd(rare_meme)
)
+ .command("memers", |c| c
+ .guild_only(true)
+ .desc("list stats for all server memers")
+ .cmd(memers)
+ )
}
#[cfg(not(feature = "diesel"))]