fix: add missing trait impl
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-03-20 12:33:20 +00:00
parent b190fcdd1c
commit 39622315be
2 changed files with 8 additions and 0 deletions

View File

@ -30,6 +30,10 @@ impl VmHostClient for LibVirt {
todo!()
}
async fn reinstall_vm(&self, cfg: &FullVmInfo) -> anyhow::Result<()> {
todo!()
}
async fn get_vm_state(&self, vm: &Vm) -> anyhow::Result<VmState> {
todo!()
}

View File

@ -768,6 +768,10 @@ impl VmHostClient for MockVmHost {
Ok(())
}
async fn reinstall_vm(&self, cfg: &FullVmInfo) -> anyhow::Result<()> {
todo!()
}
async fn get_vm_state(&self, vm: &Vm) -> anyhow::Result<VmState> {
let vms = self.vms.lock().await;
if let Some(vm) = vms.get(&vm.id) {