Files
sensenet/proto/telemetry.proto
2022-02-26 22:57:13 -08:00

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;
}