android13/packages/modules/Bluetooth/system/blueberry/facade/shim/facade.proto

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;
}