Files
kubelogin/pkg/tokencache/types.go
2024-10-26 21:42:23 +09:00

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
}