role_spec.go 145 B

1234567891011
  1. package pg
  2. type RoleSpec struct {
  3. Roletype RoleSpecType
  4. Rolename *string
  5. Location int
  6. }
  7. func (n *RoleSpec) Pos() int {
  8. return n.Location
  9. }