gogo / protobuf

[Deprecated] Protocol Buffers for Go with Gadgets
Other
5.67k stars 806 forks source link

How to generate parameter "description" in message of proto3 #766

Open 0xHigos opened 1 year ago

0xHigos commented 1 year ago

I'm a beginer of proto3.

I searched similar keywords but don't found any relevant issues.

The Go struct code generated by protoc 3 is typically in the following format: struct{ Field1 string protobuf:"bytes,1,opt,name=field1,proto3" json:"field1,omitempty" }

It only includes protobuf and json parameters. I need to generate fields with additional parameters, such as "protobuf:"" "json:"" "description:". How should I write it in protoc 3?

I wanna generated "description" parameter because open-api v3 is support annotion in resquest/response body now. so maybe proto3 can support generated this parameter.

can someone suggest me how to do it. thanks.

it would be best if someone can give me an example to guide how to write proto3. very thanks :)

someview commented 11 months ago

I'm a beginer of proto3.

I searched similar keywords but don't found any relevant issues.

The Go struct code generated by protoc 3 is typically in the following format: struct{ Field1 string protobuf:"bytes,1,opt,name=field1,proto3" json:"field1,omitempty" }

It only includes protobuf and json parameters. I need to generate fields with additional parameters, such as "protobuf:"" "json:"" "description:". How should I write it in protoc 3?

I wanna generated "description" parameter because open-api v3 is support annotion in resquest/response body now. so maybe proto3 can support generated this parameter.

can someone suggest me how to do it. thanks.

it would be best if someone can give me an example to guide how to write proto3. very thanks :)

You need to know how to describe proto3 totally and how the plugin works.