11 lines
143 B
Protocol Buffer
11 lines
143 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Proto.Session;
|
|
|
|
message Packet
|
|
{
|
|
bytes signature = 1;
|
|
bytes publicKey = 2;
|
|
bytes command = 3;
|
|
bytes data = 4;
|
|
} |