mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
15 lines
348 B
Protocol Buffer
15 lines
348 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package discover;
|
||
|
|
||
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
||
|
|
||
|
option (gogoproto.goproto_getters_all) = false;
|
||
|
option (gogoproto.sizer_all) = false;
|
||
|
option (gogoproto.protosizer_all) = true;
|
||
|
|
||
|
message Announce {
|
||
|
bytes id = 1 [(gogoproto.customname) = "ID"];
|
||
|
repeated string addresses = 2;
|
||
|
}
|