go-zero/core/discov/config.go
2020-07-26 17:09:05 +08:00

19 lines
285 B
Go

package discov
import "errors"
type EtcdConf struct {
Hosts []string
Key string
}
func (c EtcdConf) Validate() error {
if len(c.Hosts) == 0 {
return errors.New("empty etcd hosts")
} else if len(c.Key) == 0 {
return errors.New("empty etcd key")
} else {
return nil
}
}