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.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 542d649..056aec6 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -80,6 +80,22 @@ fn register_db(f: StandardFramework) -> StandardFramework {
.guild_only(true)
.help_available(false)
.cmd(meme))
+ .command("addmeme", |c| c
+ .guild_only(true)
+ .desc("first argument is title, everything after is text. one attached image is included if present.")
+ .cmd(addmeme)
+ )
+ .command("delmeme", |c| c
+ .guild_only(true)
+ .desc("not currently working")
+ .cmd(delmeme)
+ )
+ .command("renamememe", |c| c
+ .guild_only(true)
+ .desc("not currently working")
+ .help_available(false)
+ .cmd(renamememe)
+ )
}
#[cfg(not(feature = "diesel"))]