Archipelago — open-source initial import

This commit is contained in:
Archipelago
2026-08-12 10:55:50 +00:00
commit d741082872
1648 changed files with 355710 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
//! 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};