diff options
| author | Nathan Perry <avaglir@gmail.com> | 2018-04-30 15:54:20 -0400 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2018-04-30 15:54:20 -0400 |
| commit | 652a36f172df43c080d6dc1d3680166ee3045f82 (patch) | |
| tree | 50557b4e26f6c0f0e594498dfb35081cba4c988c /src/commands/mod.rs | |
| parent | 9f3a555c2801c00a78e8380d8acc3d5931972335 (diff) | |
add reactions, change add/recall meme structure
Diffstat (limited to 'src/commands/mod.rs')
| -rw-r--r-- | src/commands/mod.rs | 16 |
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"))] |
