Files
kubesphere/pkg/api/auth/token/user.go
hongming cae7843832 update
Signed-off-by: hongming <talonwan@yunify.com>
2020-03-22 15:57:29 +08:00

13 lines
122 B
Go

package token
type User interface {
// Name
GetName() string
// UID
GetUID() string
// Email
GetEmail() string
}