mirror of
https://github.com/coder/code-server.git
synced 2026-05-13 07:47:26 +02:00
* 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;
|
|
}
|