mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-20 03:51:00 +00:00
10 lines
163 B
Protocol Buffer
10 lines
163 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package protobuf;
|
||
|
|
||
|
message SimpleMessage {
|
||
|
required string description = 1;
|
||
|
required int32 id = 2;
|
||
|
optional string metadata = 3;
|
||
|
}
|