hypervisor: Make hypervisor module private

All the required functionality is already exported from the hypervisor
crate so for consistency make this module private.

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2022-05-11 16:41:37 +01:00 committed by Sebastien Boeuf
parent d3f66f8702
commit 288cea917e

View File

@ -37,7 +37,7 @@ pub mod kvm;
pub mod mshv;
/// Hypevisor related module
pub mod hypervisor;
mod hypervisor;
/// Vm related module
mod vm;