syntax = "proto3";
package terrazzo.remote.health;
import "google/protobuf/duration.proto";
service HealthService {
rpc PingPong(Ping) returns (Pong);
}
message Ping {
string connection_id = 1;
google.protobuf.Duration delay = 2;
string auth_code = 3;
}
message Pong {}