aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2017-11-08 02:05:09 -0800
committeriximeow <me@iximeow.net>2017-11-08 02:05:09 -0800
commitc2c125a83cfdd3556df37f02907edcb1351d674b (patch)
tree532704985e9b9484e9ac78fee9f95a29fdab48d3 /src/commands/mod.rs
parent96425724b0e435c33876f4dd9685aed2bbdea1fd (diff)
first brush of a compose mode, support thread viewing again
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 49b2cba..9ec6c4b 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -7,14 +7,14 @@ pub struct Command {
pub exec: fn(line: String, tweeter: &mut tw::TwitterCache, queryer: &mut Queryer)
}
-mod show_cache;
-mod twete;
-mod look_up;
-mod view;
-mod quit;
-mod fav;
-mod follow;
-mod thread;
+pub mod show_cache;
+pub mod twete;
+pub mod look_up;
+pub mod view;
+pub mod quit;
+pub mod fav;
+pub mod follow;
+pub mod thread;
pub static COMMANDS: &[&Command] = &[
&show_cache::SHOW_CACHE,