feat: patch vm

This commit is contained in:
2024-12-29 19:16:02 +00:00
parent e51bd2722e
commit 265d91dd83
5 changed files with 167 additions and 75 deletions

View File

@ -50,4 +50,7 @@ pub trait Provisioner: Send + Sync {
&self,
vm_id: u64,
) -> Result<WebSocketStream<MaybeTlsStream<TcpStream>>>;
/// Re-Configure VM
async fn patch_vm(&self, vm_id: u64) -> Result<()>;
}