1syntax = "proto3";
2
3package bluetooth.shim.facade;
4
5import "google/protobuf/empty.proto";
6
7service ShimFacade {
8  rpc Dump(google.protobuf.Empty) returns (stream DumpsysMsg) {}
9}
10
11message DumpsysMsg {
12  bytes data = 1;
13}
14