9 lines
188 B
Go
9 lines
188 B
Go
package auth
|
|
|
|
import "git.lxtend.com/qqbot/constants"
|
|
|
|
type Auth struct {
|
|
Qqid string `json:"qqid" db:"qqid"`
|
|
Role constants.PermissionLevel `json:"role" db:"role"`
|
|
}
|