mirror of
https://github.com/rancher/norman.git
synced 2025-08-19 15:57:09 +00:00
15 lines
245 B
Go
15 lines
245 B
Go
// +build !linux
|
|
|
|
package k8s
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"k8s.io/client-go/tools/clientcmd"
|
|
)
|
|
|
|
func getEmbedded(ctx context.Context) (bool, clientcmd.ClientConfig, error) {
|
|
return false, nil, fmt.Errorf("embedded only supported on linux")
|
|
}
|