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_connector_migration;
8mod key_rotation;
9mod user_crypto_management_client;
10pub use user_crypto_management_client::{
11 UserCryptoManagementClient, UserCryptoManagementClientExt,
12};