bwx-cli 2.3.1

Unofficial Bitwarden CLI with first-class macOS support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(clippy::as_conversions)]

mod client;
mod sso;
mod types;
mod wire;

#[cfg(test)]
mod tests;

pub use client::Client;
pub use types::{
    CipherRepromptType, FieldType, KdfType, LinkedIdType,
    TwoFactorProviderType, UriMatchType,
};