mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 17:40:24 +08:00
19 lines
191 B
Protocol Buffer
19 lines
191 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package node;
|
||
|
|
|
||
|
|
option go_package = "./node";
|
||
|
|
|
||
|
|
service Service {
|
||
|
|
rpc node (NodeRequest) returns (NodeResponse) {
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
message NodeRequest {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
message NodeResponse {
|
||
|
|
|
||
|
|
}
|