mirror of
https://github.com/rancher/norman.git
synced 2025-09-01 07:08:59 +00:00
15 lines
285 B
Go
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
|
|
}
|