* Convert fully to protobuf (was partially JSON) * Handle all floating promises * Remove stringified proto from trace logging It wasn't proving to be very useful.
8 lines
144 B
Protocol Buffer
8 lines
144 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
// Sent when a shared process becomes active
|
|
message SharedProcessActive {
|
|
string socket_path = 1;
|
|
string log_path = 2;
|
|
}
|