mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-18 20:23:28 +02:00
12 lines
321 B
Go
12 lines
321 B
Go
package jira
|
|
|
|
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")
|
|
}
|