Skip to content

Commit 2bfcb78

Browse files
committed
Updated bitwarden client
1 parent c5d9aff commit 2bfcb78

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

cmd/api/bitwarden.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ func bwRegister(flags *Flags) {
6161
{Name: "sync", Description: "Sync items from Bitwarden", Call: bwSync},
6262
{Name: "folders", Description: "Retrieve folders", Call: bwFolders},
6363
{Name: "logins", Description: "Retrieve login items", Call: bwLogins},
64+
{Name: "password", Description: "Print a password to stdout", Call: bwGetPassword},
6465
},
6566
})
6667
}
@@ -268,6 +269,10 @@ func bwLogins(w *tablewriter.TableWriter) error {
268269
return nil
269270
}
270271

272+
func bwGetPassword(w *tablewriter.TableWriter) error {
273+
return ErrNotImplemented
274+
}
275+
271276
///////////////////////////////////////////////////////////////////////////////
272277
// OTHER
273278

0 commit comments

Comments
 (0)