mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-15 01:34:05 +00:00
12 lines
254 B
Protocol Buffer
12 lines
254 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package issue261;
|
||
|
|
||
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
||
|
|
||
|
import "google/protobuf/duration.proto";
|
||
|
|
||
|
message MapStdTypes {
|
||
|
map<int32,google.protobuf.Duration> nullableDuration = 3 [(gogoproto.stdduration) = true];
|
||
|
}
|