16 lines
163 B
Protocol Buffer
16 lines
163 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Proto.IPC;
|
|
|
|
message Command
|
|
{
|
|
bytes name = 1;
|
|
bytes data = 2;
|
|
}
|
|
|
|
message Function
|
|
{
|
|
bytes name = 1;
|
|
repeated bytes params = 2;
|
|
}
|