aboutsummaryrefslogtreecommitdiff
path: root/commands/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'commands/mod.rs')
-rw-r--r--commands/mod.rs46
1 files changed, 0 insertions, 46 deletions
diff --git a/commands/mod.rs b/commands/mod.rs
deleted file mode 100644
index fc66bec..0000000
--- a/commands/mod.rs
+++ /dev/null
@@ -1,46 +0,0 @@
-use tw;
-use ::Queryer;
-
-pub struct Command {
- pub keyword: &'static str,
- pub params: u8,
- 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;
-
-pub static COMMANDS: &[&Command] = &[
- &show_cache::SHOW_CACHE,
- &quit::QUIT,
- &look_up::LOOK_UP_USER,
- &look_up::LOOK_UP_TWEET,
- &view::VIEW,
- &fav::UNFAV,
- &fav::FAV,
- &twete::DEL,
- &twete::TWETE,
- &twete::QUOTE,
- &twete::RETWETE,
- &twete::REP,
- &twete::THREAD
- /*
- &QUIT,
- &LOOK_UP_USER,
- &LOOK_UP_TWEET,
- &VIEW,
- &UNFAV,
- &FAV,
- &DEL,
- &TWETE,
- &QUOTE,
- &RETWETE,
- &REP,
- &THREAD
- ];
- */
-];