please upgrade the proto package A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.prot
| 35 | // |
| 36 | // The JSON representation for `Empty` is empty JSON object `{}`. |
| 37 | type Empty struct { |
| 38 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 39 | XXX_unrecognized []byte `json:"-"` |
| 40 | XXX_sizecache int32 `json:"-"` |
| 41 | } |
| 42 | |
| 43 | func (m *Empty) Reset() { *m = Empty{} } |
| 44 | func (*Empty) ProtoMessage() {} |
nothing calls this directly
no outgoing calls
no test coverage detected