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.rs11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 067d9be..8009093 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -103,12 +103,6 @@ fn register_db(f: StandardFramework) -> StandardFramework {
.desc("delete a meme by name (exact match only)")
.cmd(delmeme)
)
- .command("renamememe", |c| c
- .guild_only(true)
- .desc("not currently working")
- .help_available(false)
- .cmd(renamememe)
- )
.command("wat", |c| c
.known_as("what")
.known_as("last")
@@ -117,6 +111,11 @@ fn register_db(f: StandardFramework) -> StandardFramework {
.desc("check info for last meme")
.cmd(wat)
)
+ .command("stats", |c| c
+ .guild_only(true)
+ .desc("get meme stats")
+ .cmd(stats)
+ )
}
#[cfg(not(feature = "diesel"))]