Skip to main content

bitwarden_user_crypto_management/
lib.rs

1#![doc = include_str!("../README.md")]
2
3// Enable uniffi scaffolding when the "uniffi" feature is enabled.
4#[cfg(feature = "uniffi")]
5uniffi::setup_scaffolding!();
6
7mod key_rotation;
8mod user_crypto_management_client;
9pub use user_crypto_management_client::{
10    UserCryptoManagementClient, UserCryptoManagementClientExt,
11};