Skip to content

Commit

Permalink
fix!: remove clip alias
Browse files Browse the repository at this point in the history
  • Loading branch information
daxartio committed Nov 18, 2023
1 parent 202b9bc commit f14be5e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ Usage: kdbx <COMMAND>
Commands:
pwd Copy password and clear clipboard after specified amount of time
clip Alias to pwd
totp Copy totp
show Display entry's info
add Add new entry
Expand Down
3 changes: 0 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ fn main() {

if let Err(err) = match cli.command {
Commands::Pwd(args) => commands::pwd::run(args),
Commands::Clip(args) => commands::pwd::run(args),
Commands::Totp(args) => commands::totp::run(args),
Commands::Show(args) => commands::show::run(args),
Commands::Init(args) => commands::init::run(args),
Expand All @@ -55,8 +54,6 @@ struct Cli {
enum Commands {
/// Copy password and clear clipboard after specified amount of time
Pwd(commands::pwd::Args),
/// Alias to pwd
Clip(commands::pwd::Args),
/// Copy totp
Totp(commands::totp::Args),
/// Display entry's info
Expand Down

0 comments on commit f14be5e

Please sign in to comment.