mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-27 23:26:44 +00:00
13 lines
171 B
Protocol Buffer
13 lines
171 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package proto;
|
|
|
|
option go_package = "/command/server/proto";
|
|
|
|
service Bor {
|
|
rpc Debug(DebugInput) returns (DebugInput);
|
|
}
|
|
|
|
message DebugInput {
|
|
|
|
}
|