mirror of
https://github.com/int128/kubelogin.git
synced 2026-05-20 14:52:49 +00:00
14 lines
280 B
Go
14 lines
280 B
Go
package tokencache
|
|
|
|
import (
|
|
"github.com/int128/kubelogin/pkg/oidc"
|
|
"github.com/int128/kubelogin/pkg/tlsclientconfig"
|
|
)
|
|
|
|
// Key represents a key of a token cache.
|
|
type Key struct {
|
|
Provider oidc.Provider
|
|
TLSClientConfig tlsclientconfig.Config
|
|
Username string
|
|
}
|