1a349bb609
Signed-off-by: Matt Moyer <moyerm@vmware.com>
18 lines
353 B
Go
18 lines
353 B
Go
/*
|
|
Copyright 2020 VMware, Inc.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
package client
|
|
|
|
import (
|
|
"context"
|
|
|
|
"k8s.io/client-go/pkg/apis/clientauthentication"
|
|
)
|
|
|
|
func ExchangeToken(ctx context.Context, token, caBundle, apiEndpoint string) (*clientauthentication.ExecCredential, error) {
|
|
_, _, _, _ = ctx, token, caBundle, apiEndpoint
|
|
return nil, nil
|
|
}
|