1
0
mirror of https://github.com/rancher/norman.git synced 2025-08-29 20:23:07 +00:00
norman/pkg/kwrapper/k8s/k3s.go
2019-08-19 10:14:05 -07:00

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")
}