mirror of
https://github.com/int128/kubelogin.git
synced 2026-05-11 10:26:46 +00:00
11 lines
242 B
Go
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
|
|
}
|