1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-01 07:08:59 +00:00
Files
norman/pkg/kwrapper/k8s/config_none.go
2018-11-07 11:44:16 -07:00

15 lines
285 B
Go

// +build !k8s
package k8s
import (
"context"
"net/http"
"github.com/rancher/norman/pkg/remotedialer"
)
func NewK3sConfig(ctx context.Context, dataDir string, authorizer remotedialer.Authorizer) (context.Context, interface{}, http.Handler, error) {
return ctx, nil, nil, nil
}