auth.go 81 B

123456
  1. package auth
  2. type UserToken interface {
  3. GetUserId() int64
  4. GetToken() string
  5. }