Can enable VNC access

This commit is contained in:
2023-10-11 19:11:00 +02:00
parent c5c46fbcd8
commit 4c29184a3b
3 changed files with 67 additions and 3 deletions

@ -155,6 +155,11 @@ impl AppConfig {
pub fn iso_storage_path(&self) -> PathBuf {
self.storage_path().join("iso")
}
/// Get VM vnc sockets
pub fn vnc_sockets_path(&self) -> PathBuf {
self.storage_path().to_path_buf()
}
}
#[derive(Debug, Clone, serde::Serialize)]