feat: add backup restore workflow
This commit is contained in:
parent
0d588fb3d9
commit
619e8eee62
7 changed files with 498 additions and 6 deletions
|
|
@ -1,3 +1,4 @@
|
|||
pub mod backup;
|
||||
mod daemon;
|
||||
mod peer_client;
|
||||
mod runtime;
|
||||
|
|
@ -105,6 +106,8 @@ pub enum NodeError {
|
|||
Json(#[from] serde_json::Error),
|
||||
#[error("io error: {0}")]
|
||||
Io(#[from] std::io::Error),
|
||||
#[error("backup error: {0}")]
|
||||
Backup(String),
|
||||
#[error("invalid resource kind: {0}")]
|
||||
InvalidResourceKind(String),
|
||||
#[error("owner init requires --admin-key so the owner trust anchor is recorded")]
|
||||
|
|
|
|||
Loading…
Reference in a new issue