summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-10 01:32:42 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-10 01:32:42 -0500
commit1c8a540c365f281b9f8dee171360347f0dc897ff (patch)
treee4dffad023db349ab72b99b21f3c19a6d985f229 /src/cli.rs
parent26584b1cffa33eab6660c1673b6d87239402ab9e (diff)
downloadlastfm-query-1c8a540c365f281b9f8dee171360347f0dc897ff.tar.gz
lastfm-query-1c8a540c365f281b9f8dee171360347f0dc897ff.zip
move the run function into cli
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index c2cae24..4b6aa0d 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -1,6 +1,8 @@
+use cmd;
+
const _DUMMY_DEPENDENCY: &'static str = include_str!("../Cargo.toml");
-pub enum Command {
+enum Command {
Sync {
username: String,
},
@@ -10,7 +12,15 @@ pub enum Command {
},
}
-pub fn get_options() -> failure::Fallible<Command> {
+pub fn run() -> failure::Fallible<()> {
+ let command = get_options()?;
+ match command {
+ Command::Sync { username } => cmd::sync::run(&username),
+ Command::SQL { query, tsv } => cmd::sql::run(&query, tsv),
+ }
+}
+
+fn get_options() -> failure::Fallible<Command> {
let matches = app_from_crate!()
.subcommand(
clap::SubCommand::with_name("sync")