Add placeholder-name CLI

- main and unit tests for main
- client package to be done in a future commit

Signed-off-by: Aram Price <pricear@vmware.com>
This commit is contained in:
Ryan Richard
2020-07-28 15:15:59 -05:00
committed by Matt Moyer
parent 9e44bc28d9
commit 27cd82065b
6 changed files with 208 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/*
Copyright 2020 VMware, Inc.
SPDX-License-Identifier: Apache-2.0
*/
package client
import "k8s.io/client-go/pkg/apis/clientauthentication"
func ExchangeToken(token, caBundle, apiEndpoint string) (*clientauthentication.ExecCredential, error) {
_ = token
_ = caBundle
_ = apiEndpoint
return nil, nil
}