Files
jira/jiracli/keyring_windows.go
T
2017-08-13 18:23:38 -07:00

12 lines
324 B
Go

package jiracli
import "fmt"
func keyringGet(user string) (string, error) {
return "", fmt.Errorf("Keyring is not supported for Windows, see: https://github.com/tmc/keyring")
}
func keyringSet(user, passwd string) error {
return fmt.Errorf("Keyring is not supported for Windows, see: https://github.com/tmc/keyring")
}