1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
syntax = "proto3"; package spectate_proto; service Spectate { rpc SendRecords (stream LogEntry) returns (SendRecordsReply); } message LogEntry { bytes data = 1; } message SendRecordsReply { int32 Result = 1; }