syntax = "proto3"; option go_package = ".;linux"; package linux; import "google/protobuf/empty.proto"; service Ping { rpc Ping(google.protobuf.Empty) returns (PingResp){} } message PingResp { int32 success = 1; }