mirror of
https://github.com/rancher/norman.git
synced 2025-08-29 20:23:07 +00:00
15 lines
239 B
Go
15 lines
239 B
Go
// +build !linux
|
|
|
|
package k8s
|
|
|
|
import (
|
|
"context"
|
|
|
|
"k8s.io/client-go/rest"
|
|
)
|
|
|
|
func getEmbedded(ctx context.Context) (bool, context.Context, *rest.Config, error) {
|
|
return false, ctx, nil, fmt.Error("embedded only supported on linux")
|
|
|
|
}
|