feat: expire soon notification

This commit is contained in:
2024-12-21 18:14:31 +00:00
parent 3e7e0a789b
commit 7bfeba0ad1
6 changed files with 30 additions and 15 deletions

View File

@ -46,5 +46,8 @@ pub trait Provisioner: Send + Sync {
async fn delete_vm(&self, vm_id: u64) -> Result<()>;
/// Open terminal proxy connection
async fn terminal_proxy(&self, vm_id: u64) -> Result<WebSocketStream<MaybeTlsStream<TcpStream>>>;
async fn terminal_proxy(
&self,
vm_id: u64,
) -> Result<WebSocketStream<MaybeTlsStream<TcpStream>>>;
}