aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2017-12-31 04:54:17 -0800
committerGitHub <noreply@github.com>2017-12-31 04:54:17 -0800
commit0668cdd7d5e800d8c7e8b1c0853f8b747179356f (patch)
tree9b4ade0ad1d036df2c5f50016720d48355f50e5e /src/commands/mod.rs
parent9979821629fc8943ad50b06e934a83a24b352a7f (diff)
parent935c78ce7d2aaabca269d81cff3459cef1084fbc (diff)
Merge pull request #5 from iximeow/dm-fixup
clean up DM support, add thing to send DMs
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index e8a725b..8108a78 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -10,6 +10,7 @@ pub struct Command {
pub help_str: &'static str
}
+pub mod dm;
pub mod help;
pub mod auth;
pub mod show_cache;
@@ -23,6 +24,7 @@ pub mod thread;
pub mod profile;
pub static COMMANDS: &[&Command] = &[
+ &dm::DM,
&profile::PROFILE,
&profile::PROFILES,
&help::HELP,