twonly-app/rust/src/passwordless_recovery/mod.rs
otsmr 98fa90a46b
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
start with passwordless recovery
2026-06-16 20:46:15 +02:00

12 lines
281 B
Rust

include!(concat!(env!("OUT_DIR"), "/passwordless_recovery.rs"));
struct PasswordLessRecovery {}
impl PasswordLessRecovery {
pub(crate) fn create_shared_secret_data(
total_shares: i64,
threshold: i64,
pin_unlock_token: Option<Vec<u8>>,
) {
}
}