anyback 0.3.0-alpha

Backup and restore CLI for Anytype
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod app;
mod index;
mod keys;
mod ui;

use std::path::Path;

use anyhow::Result;

pub fn run_inspector(path: &Path) -> Result<()> {
    app::App::run(path)
}