9 lines
78 B
Go
9 lines
78 B
Go
package token
|
|
|
|
type User interface {
|
|
// Name
|
|
Name() string
|
|
|
|
UID() string
|
|
}
|