clustvirt/cluster/errors.go
Matthew Stobbs 851ae7a77f implemented a router structure
- keep things localized a bit more
- fixes import cycle
2024-03-21 16:56:24 -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")
)