This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/rpc/protos/service_ping.proto
T

20 lines
261 B
Protocol Buffer

syntax = "proto3";
option go_package = "./pb";
package pb;
// Ping服务
// 用来测试连接是否可用
service PingService {
// 发起Ping
rpc ping(PingRequest) returns (PingResponse);
}
// 发起Ping
message PingRequest {
}
message PingResponse {
}