golang / protobuf

Go support for Google's protocol buffers
BSD 3-Clause "New" or "Revised" License
9.74k stars 1.58k forks source link

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

Closed 0xHigos closed 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 :)

puellanivis commented 1 year ago

This appears to be a duplicate of https://github.com/golang/protobuf/issues/1418

0xHigos commented 1 year ago

Thank you for the quick response, I see the solution is use another custom plugins