14 lines
221 B
Protocol Buffer
14 lines
221 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package blueberry.facade.shim;
|
||
|
|
||
|
import "google/protobuf/empty.proto";
|
||
|
|
||
|
service ShimFacade {
|
||
|
rpc Dump(google.protobuf.Empty) returns (stream DumpsysMsg) {}
|
||
|
}
|
||
|
|
||
|
message DumpsysMsg {
|
||
|
bytes data = 1;
|
||
|
}
|