spectate_lib 0.0.4

A logging target for env_logger for use by the Spectate client
Documentation
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;
}