1package boards 2 3type Permission string 4 5const ( 6 DeletePermission Permission = "role:delete" 7 EditPermission Permission = "role:edit" 8)