aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorAndy Wortman <ixineeringeverywhere@gmail.com>2017-11-08 02:05:09 -0800
committerAndy Wortman <ixineeringeverywhere@gmail.com>2017-11-08 02:05:09 -0800
commitaa5f8ff4bce898907ffc0c0e2b7ea36d7f8c10b7 (patch)
tree532704985e9b9484e9ac78fee9f95a29fdab48d3 /src/commands/mod.rs
parent41f6535a480bb9b0ff085e0144852827633f2305 (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,