10 lines
260 B
Rust
10 lines
260 B
Rust
|
|
//! 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;
|
||
|
|
|
||
|
|
pub use identity::create_encrypted_backup;
|