aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/rbw/main.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-07-25 04:33:51 -0400
committerJesse Luehrs <doy@tozt.net>2020-07-25 04:33:51 -0400
commit6b38682d711fb74feddcc06c4da18f8e771858df (patch)
tree52c36bba21247f0abb7062f87e3e0745dd496b4f /src/bin/rbw/main.rs
parent56e9b720bade5dcdc6505952c1bf81bdeca26bcd (diff)
downloadrbw-6b38682d711fb74feddcc06c4da18f8e771858df.tar.gz
rbw-6b38682d711fb74feddcc06c4da18f8e771858df.zip
implement rbw unlocked
Diffstat (limited to 'src/bin/rbw/main.rs')
-rw-r--r--src/bin/rbw/main.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bin/rbw/main.rs b/src/bin/rbw/main.rs
index f1903e7..2bb4360 100644
--- a/src/bin/rbw/main.rs
+++ b/src/bin/rbw/main.rs
@@ -22,6 +22,9 @@ enum Opt {
#[structopt(about = "Unlock the local Bitwarden database")]
Unlock,
+ #[structopt(about = "Check if the local Bitwarden database is unlocked")]
+ Unlocked,
+
#[structopt(about = "Update the local copy of the Bitwarden database")]
Sync,
@@ -207,6 +210,7 @@ impl Opt {
}
Self::Login => "login".to_string(),
Self::Unlock => "unlock".to_string(),
+ Self::Unlocked => "unlocked".to_string(),
Self::Sync => "sync".to_string(),
Self::List { .. } => "list".to_string(),
Self::Get { .. } => "get".to_string(),
@@ -275,6 +279,7 @@ fn main(opt: Opt) {
},
Opt::Login => commands::login(),
Opt::Unlock => commands::unlock(),
+ Opt::Unlocked => commands::unlocked(),
Opt::Sync => commands::sync(),
Opt::List { fields } => commands::list(&fields),
Opt::Get {