mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
5e85663ce3
Add support for storing the CLI session token in the OS keyring on macOS when the --use-keyring flag is provided. https://github.com/coder/coder/issues/19403 https://www.notion.so/coderhq/CLI-Session-Token-in-OS-Keyring-293d579be592808b8b7fd235304e50d5
11 lines
183 B
Go
11 lines
183 B
Go
//go:build !windows && !darwin
|
|
|
|
package sessionstore_test
|
|
|
|
import "testing"
|
|
|
|
func readRawKeychainCredential(t *testing.T, _ string) []byte {
|
|
t.Fatal("not implemented")
|
|
return nil
|
|
}
|