mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-13 00:36:28 +00:00
16 lines
259 B
Protocol Buffer
16 lines
259 B
Protocol Buffer
|
|
syntax = "proto3";
|
|
|
|
package protocol;
|
|
|
|
import "ext.proto";
|
|
import "repos/protobuf/gogoproto/gogo.proto";
|
|
|
|
message TestOldDeviceID {
|
|
bytes test = 1;
|
|
}
|
|
|
|
message TestNewDeviceID {
|
|
bytes test = 1 [(ext.device_id) = true, (gogoproto.nullable) = false];
|
|
}
|