Files
kubelogin/pkg/credentialplugin/types.go
2020-11-18 10:00:39 +09:00

11 lines
242 B
Go

// Package credentialplugin provides the types for client-go credential plugins.
package credentialplugin
import "time"
// Output represents an output object of the credential plugin.
type Output struct {
Token string
Expiry time.Time
}