mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
8 lines
183 B
Go
8 lines
183 B
Go
|
package discov
|
||
|
|
||
|
import "github.com/tal-tech/go-zero/core/discov/internal"
|
||
|
|
||
|
func RegisterAccount(endpoints []string, user, pass string) {
|
||
|
internal.AddAccount(endpoints, user, pass)
|
||
|
}
|