0a735aaf8a
made it private and made it deffer the message instead of executing after
16 lines
457 B
Go
16 lines
457 B
Go
package person
|
|
|
|
type Permission string
|
|
|
|
const (
|
|
PermissionLookup Permission = "lookup"
|
|
PermissionBan Permission = "ban"
|
|
PermissionInformation Permission = "information"
|
|
PermissionDonator Permission = "donator"
|
|
PermissionGiveItem Permission = "give_item"
|
|
PermissionTakeItem Permission = "take_item"
|
|
PermissionReset Permission = "reset"
|
|
PermissionFullLocker Permission = "full_locker"
|
|
|
|
PermissionAll Permission = "all"
|
|
) |