节点可以单独设置所使用的API节点地址

This commit is contained in:
刘祥超
2022-11-21 19:55:09 +08:00
parent 52a20b9915
commit 64f54d462e
6 changed files with 4774 additions and 4092 deletions

View File

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