user.go 78 字节
Newer Older
Z
zryfish 已提交
1 2 3 4 5 6 7 8
package token

type User interface {
	// Name
	Name() string

	UID() string
}