10 lines
160 B
Protocol Buffer
10 lines
160 B
Protocol Buffer
syntax = 'proto3';
|
|
package telemetrypb;
|
|
option go_package = '.;telemetrypb';
|
|
|
|
message Packet {
|
|
string topic = 1;
|
|
uint64 timestamp = 2;
|
|
bytes payload = 3;
|
|
}
|