ping.proto 219 B

123456789101112
  1. syntax = "proto3";
  2. option go_package = ".;linux";
  3. package linux;
  4. import "google/protobuf/empty.proto";
  5. service Ping {
  6. rpc Ping(google.protobuf.Empty) returns (PingResp){}
  7. }
  8. message PingResp {
  9. int32 success = 1;
  10. }