aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorAndy Wortman <ixineeringeverywhere@gmail.com>2017-10-17 02:33:59 -0700
committerAndy Wortman <ixineeringeverywhere@gmail.com>2017-10-17 02:33:59 -0700
commit2f2a76aab3f23baaf9a47a72b7660a64e2e156dc (patch)
tree1c6312dd3f1f8cc30ec9dcfff944bb1274bf15e3 /src/commands/mod.rs
parentebe62b5ad92b60549deffd2d729c43134f93d96c (diff)
add rudimentary thread support
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 4052326..49b2cba 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -14,6 +14,7 @@ mod view;
mod quit;
mod fav;
mod follow;
+mod thread;
pub static COMMANDS: &[&Command] = &[
&show_cache::SHOW_CACHE,
@@ -31,7 +32,10 @@ pub static COMMANDS: &[&Command] = &[
&twete::QUOTE,
&twete::RETWETE,
&twete::REP,
- &twete::THREAD
+ &twete::THREAD,
+ &thread::FORGET_THREAD,
+ &thread::REMEMBER_THREAD,
+ &thread::LIST_THREADS
/*
&QUIT,
&LOOK_UP_USER,