src/bin/proxmox_backup_client/task.rs: split out task command

This commit is contained in:
Dietmar Maurer
2020-07-02 18:04:29 +02:00
parent 43abba4b4f
commit cc7995ac40
4 changed files with 151 additions and 134 deletions

View File

@ -2,3 +2,5 @@ mod benchmark;
pub use benchmark::*;
mod mount;
pub use mount::*;
mod task;
pub use task::*;