Skip to main content

bitwarden_unlock/
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 session_key;
8mod unlock_client;
9
10pub use session_key::SessionKey;
11pub use unlock_client::{UnlockClient, UnlockClientExt, UnlockError, UnlockMethod};