go-zero/core/discov/accountregistry.go
2021-12-30 17:44:15 +08:00

9 lines
261 B
Go

package discov
import "github.com/tal-tech/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)
}