10 lines
105 B
Protocol Buffer
10 lines
105 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Proto.RCon;
|
|
|
|
message Command
|
|
{
|
|
bytes command = 1;
|
|
bytes signature = 2;
|
|
}
|