From bd7c31233de96d96e16f9c15e22d014514f7a173 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 8 Nov 2018 01:52:31 -0500 Subject: stop passing the api key on the command line --- src/cli.rs | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/cli.rs') diff --git a/src/cli.rs b/src/cli.rs index d296fea..0c140e7 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -7,7 +7,6 @@ pub enum Command { pub struct Options { pub command: Command, pub username: Option, - pub api_key: Option, } pub fn get_options() -> failure::Fallible { @@ -17,20 +16,9 @@ pub fn get_options() -> failure::Fallible { .about("Updates the local copy of track data from last.fm") .arg( clap::Arg::with_name("username") - .short("u") - .long("username") - .value_name("USERNAME") .required(true) .help("last.fm username to fetch tracks for") ) - .arg( - clap::Arg::with_name("api-key") - .short("k") - .long("api-key") - .value_name("API_KEY") - .required(true) - .help("last.fm api key") - ) ) .get_matches(); @@ -43,6 +31,5 @@ pub fn get_options() -> failure::Fallible { Ok(Options { command: command, username: sub_matches.value_of("username").map(|s| s.to_string()), - api_key: sub_matches.value_of("api-key").map(|s| s.to_string()), }) } -- cgit v1.2.3-54-g00ecf