9 lines
131 B
Go
9 lines
131 B
Go
package cluster
|
|
|
|
import "errors"
|
|
|
|
// Errors that can happen in the cluster
|
|
var (
|
|
ErrHostNotFound = errors.New("host not found")
|
|
)
|