go-zero/core/discov/accountregistry.go

9 lines
261 B
Go
Raw Normal View History

package discov
import "github.com/tal-tech/go-zero/core/discov/internal"
2021-12-30 17:44:15 +08:00
// RegisterAccount registers the username/password to the given etcd cluster.
func RegisterAccount(endpoints []string, user, pass string) {
internal.AddAccount(endpoints, user, pass)
}