summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-07 10:01:18 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-07 10:01:18 -0500
commit1e1a47061c455a5324d8a62fa9bcee9ecdf9c4cb (patch)
tree905d0a1f8bdc8995e924a559f1dee313a612079a /src/cli.rs
parent2f5bc1cb9f31d431d017d173728fd1e782c97c8e (diff)
downloadlastfm-query-1e1a47061c455a5324d8a62fa9bcee9ecdf9c4cb.tar.gz
lastfm-query-1e1a47061c455a5324d8a62fa9bcee9ecdf9c4cb.zip
better command line parsing
Diffstat (limited to 'src/cli.rs')
-rw-r--r--src/cli.rs28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/cli.rs b/src/cli.rs
new file mode 100644
index 0000000..4e1d7cb
--- /dev/null
+++ b/src/cli.rs
@@ -0,0 +1,28 @@
+use clap;
+
+const _DUMMY_DEPENDENCY: &'static str = include_str!("../Cargo.toml");
+
+pub struct Options {
+ pub username: String,
+ pub api_key: String,
+}
+
+pub fn get_options() -> Options {
+ let matches = app_from_crate!()
+ .arg(
+ clap::Arg::with_name("username")
+ .required(true)
+ .help("last.fm username to fetch tracks for")
+ )
+ .arg(
+ clap::Arg::with_name("api_key")
+ .required(true)
+ .help("last.fm api key")
+ )
+ .get_matches();
+
+ Options {
+ username: matches.value_of("username").unwrap().to_string(),
+ api_key: matches.value_of("api_key").unwrap().to_string(),
+ }
+}