Öffentliche Dateiansicht: Raw-Dateien, Tree, Releases und Issues sind ohne Login verfügbar.
vault/keychain_other.go Raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//go:build !darwin

package vault

import "errors"

func KeychainGet() (string, error) {
	return "", errors.New("keychain is only supported on macOS")
}

func KeychainSet(_ string) error {
	return errors.New("keychain is only supported on macOS")
}

func KeychainDelete() error {
	return errors.New("keychain is only supported on macOS")
}