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

14 lines
221 B
Protocol Buffer
Raw Normal View History

2025-08-25 08:38:42 +08:00
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;
}