2026-03-12 00:19:30 +00:00
|
|
|
//! Backup and restore for Archipelago.
|
|
|
|
|
//!
|
|
|
|
|
//! - `identity`: Encrypted DID identity key backup (existing).
|
|
|
|
|
//! - `full`: Full system backup — identity + app data + configs + settings.
|
|
|
|
|
|
|
|
|
|
mod identity;
|
|
|
|
|
pub mod full;
|
|
|
|
|
|
2026-03-15 05:18:12 +00:00
|
|
|
pub use identity::{create_encrypted_backup, restore_encrypted_backup};
|