608806e884
Async callbacks are a PITA, so we now pass a single trait object which implements check_auth and get_index.
13 lines
164 B
Rust
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::*;
|