fix issue with proxmox session binding

This commit is contained in:
2026-03-27 23:02:36 +00:00
parent f17ae26506
commit a1a18af016
3 changed files with 14 additions and 3 deletions

View File

@@ -5,9 +5,11 @@ import (
)
func NewPool(backends *Backends, poolname string) (int, error) {
// only pve backend handles pools
return backends.pve.NewPool(poolname)
}
func DelPool(backends *Backends, poolname string) (int, error) {
// only pve backend handles pools
return backends.pve.DelPool(poolname)
}