clustvirt/cluster/errors.go
Matthew Stobbs 8e62f7e271 merge migrate_to_libvirtxml
completed migration to libvirtxml
2024-03-23 22:05:06 -06:00

9 lines
131 B
Go

package cluster
import "errors"
// Errors that can happen in the cluster
var (
ErrHostNotFound = errors.New("host not found")
)