10 lines
198 B
Go
10 lines
198 B
Go
//go:build !unix && !windows
|
|
|
|
package credentiallease
|
|
|
|
import "testing"
|
|
|
|
func secureTestKeyFile(t *testing.T, _ string) {
|
|
t.Helper()
|
|
t.Skip("private key files are unsupported on this platform")
|
|
}
|