You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
433 B
14 lines
433 B
6 years ago
|
syntax = "proto3";
|
||
|
package testdata;
|
||
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
||
|
|
||
|
option (gogoproto.goproto_enum_prefix_all) = false;
|
||
|
option (gogoproto.goproto_getters_all) = false;
|
||
|
option (gogoproto.unmarshaler_all) = true;
|
||
|
option (gogoproto.marshaler_all) = true;
|
||
|
option (gogoproto.sizer_all) = true;
|
||
|
|
||
|
message Demo {
|
||
|
int64 ID = 1 [(gogoproto.jsontag) = "id"];
|
||
|
string Title = 3 [(gogoproto.jsontag) = "title"];
|
||
|
}
|