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.
32 lines
490 B
Go
32 lines
490 B
Go
package internal
|
|
|
|
import "sync"
|
|
|
|
type Account struct {
|
|
User string
|
|
Pass string
|
|
}
|
|
|
|
var (
|
|
accounts = make(map[string]Account)
|
|
lock sync.RWMutex
|
|
)
|
|
|
|
func AddAccount(endpoints []string, user, pass string) {
|
|
lock.Lock()
|
|
defer lock.Unlock()
|
|
|
|
accounts[getClusterKey(endpoints)] = Account{
|
|
User: user,
|
|
Pass: pass,
|
|
}
|
|
}
|
|
|
|
func GetAccount(endpoints []string) (Account, bool) {
|
|
lock.RLock()
|
|
defer lock.RUnlock()
|
|
|
|
account, ok := accounts[getClusterKey(endpoints)]
|
|
return account, ok
|
|
}
|