2021-08-31 12:45:48 +00:00
|
|
|
use proxmox::api::cli::{run_cli_command, CliCommandMap, CliEnvironment};
|
|
|
|
|
2021-09-21 10:11:13 +00:00
|
|
|
mod proxmox_backup_debug;
|
|
|
|
use proxmox_backup_debug::*;
|
2021-08-31 12:45:48 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let cmd_def = CliCommandMap::new()
|
|
|
|
.insert("inspect", inspect::inspect_commands())
|
|
|
|
.insert("recover", recover::recover_commands());
|
|
|
|
|
|
|
|
let rpcenv = CliEnvironment::new();
|
|
|
|
run_cli_command(cmd_def, rpcenv, Some(|future| pbs_runtime::main(future)));
|
|
|
|
}
|