13 lines
235 B
Protocol Buffer
13 lines
235 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package blockchain;
|
||
|
|
||
|
option go_package = "code.30cm.net/digimon/app-cloudep-blockchain";
|
||
|
|
||
|
// OKResp
|
||
|
message OKResp {}
|
||
|
// NoneReq
|
||
|
message NoneReq {}
|
||
|
|
||
|
service BlockchainService{
|
||
|
rpc Ping(NoneReq) returns(OKResp);
|
||
|
}
|