proxmox-backup/proxmox-restore-daemon/src/proxmox_restore_daemon/mod.rs
Dietmar Maurer 608806e884 proxmox-rest-server: use new ServerAdapter trait instead of callbacks
Async callbacks are a PITA, so we now pass a single trait object which
implements check_auth and get_index.
2021-10-05 11:13:10 +02:00

13 lines
164 B
Rust

///! File restore VM related functionality
mod api;
pub use api::*;
pub mod auth;
pub use auth::*;
mod watchdog;
pub use watchdog::*;
mod disk;
pub use disk::*;