bilibili-API-collect/grpc_api/bilibili/broadcast/v2/laser.proto
Northern_Lights da24448000
Some checks failed
deploy and publish / build-and-deploy (push) Has been cancelled
revert 7809924e2d
revert delete all
2026-01-29 09:03:04 +00:00

22 lines
410 B
Protocol Buffer

syntax = "proto3";
package bilibili.broadcast.v2;
import "google/protobuf/empty.proto";
// Laser
service Laser {
// 监听Laser事件
rpc WatchEvent(google.protobuf.Empty) returns (stream LaserEventResp);
}
// 服务端下发Laser事件
message LaserEventResp {
// 任务id
int64 taskid = 1;
// 指令名
string action = 2;
// 指令参数json字符串
string params = 3;
}