We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 390ae9e commit 58ca883Copy full SHA for 58ca883
1 file changed
src/main.rs
@@ -24,8 +24,6 @@ pub enum Command {
24
GetApiKey {
25
#[arg(short, long)]
26
unsafe_print: bool,
27
- #[arg(short, long)]
28
- no_url: bool,
29
},
30
DeleteApiKey,
31
NewApiKey,
@@ -66,7 +64,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
66
64
.map_err(|_| "Invalid username or password")?;
67
65
68
match cli_input.cmd {
69
- Command::GetApiKey { unsafe_print, .. } => {
+ Command::GetApiKey { unsafe_print } => {
70
get_keys_interactive(&client, &mut term, unsafe_print).await?
71
}
72
Command::DeleteApiKey => delete_api_key(&client).await?,
0 commit comments