vtprotobuf icon indicating copy to clipboard operation
vtprotobuf copied to clipboard

Add structpb to wkt list

Open gnagel opened this issue 2 years ago • 1 comments

  1. Add struct.proto to the list of generated types
  2. Ignore goland config files

gnagel avatar Oct 19 '23 17:10 gnagel

The generated types don't quite match up, it's missing the internal types:


func (m *Value_NullValue) CloneVT() isValue_Kind {
  ...
}

func (m *Value_NumberValue) CloneVT() isValue_Kind {
  ...
}

func (m *Value_StringValue) CloneVT() isValue_Kind {
  ...
}

func (m *Value_BoolValue) CloneVT() isValue_Kind {
  ...
}

func (m *Value_StructValue) CloneVT() isValue_Kind {
  ...
}

func (m *Value_ListValue) CloneVT() isValue_Kind {
  ...
}

gnagel avatar Oct 19 '23 17:10 gnagel