Versions in this module Expand all Collapse all v0 v0.1.18 Jul 10, 2026 Changes in this version + var ErrNotSupported = errors.New("Keyring is not supported on WSL") + func PromptMasked(stdin *os.File) string + type KeyringStore struct + func (ks *KeyringStore) Delete(project string) error + func (ks *KeyringStore) DeleteAll() error + func (ks *KeyringStore) Get(project string) (string, error) + func (ks *KeyringStore) Set(project, password string) error + type Store interface + Delete func(project string) error + DeleteAll func() error + Get func(key string) (string, error) + Set func(key, value string) error + var StoreProvider Store = &KeyringStore{}