You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
540 B
Go
15 lines
540 B
Go
package discov
|
|
|
|
import "github.com/zeromicro/go-zero/core/discov/internal"
|
|
|
|
// RegisterAccount registers the username/password to the given etcd cluster.
|
|
func RegisterAccount(endpoints []string, user, pass string) {
|
|
internal.AddAccount(endpoints, user, pass)
|
|
}
|
|
|
|
// RegisterTLS registers the CertFile/CertKeyFile/CACertFile to the given etcd.
|
|
func RegisterTLS(endpoints []string, certFile, certKeyFile, caFile string,
|
|
insecureSkipVerify bool) error {
|
|
return internal.AddTLS(endpoints, certFile, certKeyFile, caFile, insecureSkipVerify)
|
|
}
|