Files
code-server/packages/protocol/src/proto/vscode.proto
Asher 3a672d725a Convert fully to protobuf (was partially JSON) (#402)
* 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.
2019-04-02 17:44:28 -05:00

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