Files
kubesphere/pkg/api/iam/token/user.go
hongming aadb5e91e8 update
Signed-off-by: hongming <talonwan@yunify.com>
2020-03-21 20:31:01 +08:00

10 lines
92 B
Go

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