aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorAndy Wortman <ixineeringeverywhere@gmail.com>2017-10-16 23:25:12 -0700
committerAndy Wortman <ixineeringeverywhere@gmail.com>2017-10-17 00:11:56 -0700
commitf3f938d2aa9cd1cc077fec386e5c0751ade6839c (patch)
tree3d30296e225903ec29033d6b69e87d3a1ab850a2 /src/commands/mod.rs
parent2ab8a00fdd6a8e9386d08c83cb7318ceb3c3c31a (diff)
add commands to follow/unfollow
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 51e0e53..4052326 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -13,6 +13,7 @@ mod look_up;
mod view;
mod quit;
mod fav;
+mod follow;
pub static COMMANDS: &[&Command] = &[
&show_cache::SHOW_CACHE,
@@ -21,6 +22,8 @@ pub static COMMANDS: &[&Command] = &[
&look_up::LOOK_UP_TWEET,
&view::VIEW,
&view::VIEW_THREAD,
+ &follow::FOLLOW,
+ &follow::UNFOLLOW,
&fav::UNFAV,
&fav::FAV,
&twete::DEL,