Files
archy/core/archipelago/src/backup/mod.rs
T

10 lines
288 B
Rust
Raw Normal View History

//! Backup and restore for Archipelago.
//!
//! - `identity`: Encrypted DID identity key backup (existing).
//! - `full`: Full system backup — identity + app data + configs + settings.
pub mod full;
mod identity;
pub use identity::{create_encrypted_backup, restore_encrypted_backup};