Skip to content

Commit 58ca883

Browse files
Remove no url flag on get-api-key
1 parent 390ae9e commit 58ca883

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ pub enum Command {
2424
GetApiKey {
2525
#[arg(short, long)]
2626
unsafe_print: bool,
27-
#[arg(short, long)]
28-
no_url: bool,
2927
},
3028
DeleteApiKey,
3129
NewApiKey,
@@ -66,7 +64,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
6664
.map_err(|_| "Invalid username or password")?;
6765

6866
match cli_input.cmd {
69-
Command::GetApiKey { unsafe_print, .. } => {
67+
Command::GetApiKey { unsafe_print } => {
7068
get_keys_interactive(&client, &mut term, unsafe_print).await?
7169
}
7270
Command::DeleteApiKey => delete_api_key(&client).await?,

0 commit comments

Comments
 (0)