(et protoreflect.EnumType)
| 251 | } |
| 252 | |
| 253 | func enumGoType(et protoreflect.EnumType) reflect.Type { |
| 254 | return reflect.TypeOf(et.New(0)) |
| 255 | } |
| 256 | |
| 257 | func messageGoType(mt protoreflect.MessageType) reflect.Type { |
| 258 | return reflect.TypeOf(MessageV1(mt.Zero().Interface())) |