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