Add a new module containing key-related functions and schemata from all over, code moved is not changed as much as possible. Requires adapting some 'use' statements across proxmox-backup-client and putting the XDG helpers quite cozily into proxmox_client_tools/mod.rs Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
14 lines
176 B
Rust
14 lines
176 B
Rust
mod benchmark;
|
|
pub use benchmark::*;
|
|
mod mount;
|
|
pub use mount::*;
|
|
mod task;
|
|
pub use task::*;
|
|
mod catalog;
|
|
pub use catalog::*;
|
|
mod snapshot;
|
|
pub use snapshot::*;
|
|
|
|
pub mod key;
|
|
|