diff --git a/proxmox-restore-daemon/src/main.rs b/proxmox-restore-daemon/src/main.rs index 0131d771..7f61faed 100644 --- a/proxmox-restore-daemon/src/main.rs +++ b/proxmox-restore-daemon/src/main.rs @@ -1,4 +1,4 @@ -///! Daemon binary to run inside a micro-VM for secure single file restore of disk images +//! Daemon binary to run inside a micro-VM for secure single file restore of disk images use std::fs::File; use std::io::prelude::*; use std::os::unix::{ diff --git a/proxmox-restore-daemon/src/proxmox_restore_daemon/api.rs b/proxmox-restore-daemon/src/proxmox_restore_daemon/api.rs index 6c27a886..8955772b 100644 --- a/proxmox-restore-daemon/src/proxmox_restore_daemon/api.rs +++ b/proxmox-restore-daemon/src/proxmox_restore_daemon/api.rs @@ -1,4 +1,4 @@ -///! File-restore API running inside the restore VM +//! File-restore API running inside the restore VM use std::ffi::OsStr; use std::fs; use std::os::unix::ffi::OsStrExt; diff --git a/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs b/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs index 58e2bb6e..d50c3287 100644 --- a/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs +++ b/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs @@ -1,4 +1,4 @@ -///! File restore VM related functionality +//! File restore VM related functionality mod api; pub use api::*;