aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2019-02-21 00:20:23 -0500
committerNathan Perry <avaglir@gmail.com>2019-02-21 00:20:23 -0500
commit299f9813bbae50dfdecccd6c8ecdaeaa9b4f4ec6 (patch)
tree6b2f15059c9773a22fc19f805f8d9a772750b500 /src/commands/mod.rs
parent2f0af295cd75d64943edb4f1af0ebcd950297893 (diff)
audiomeme command
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 d5d91e2..067d9be 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -83,6 +83,11 @@ fn register_db(f: StandardFramework) -> StandardFramework {
.guild_only(true)
.help_available(false)
.cmd(meme))
+ .command("audiomeme", |c| c
+ .guild_only(true)
+ .help_available(false)
+ .cmd(audio_meme)
+ )
.command("addmeme", |c| c
.guild_only(true)
.desc("first argument is title, everything after is text. one attached image is included if present.")