mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-02-07 01:30:07 +08:00
20 lines
380 B
Protocol Buffer
20 lines
380 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bilibili.broadcast.v1;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
// Laser
|
|
service Laser {
|
|
// 监听上报事件
|
|
rpc WatchLogUploadEvent(google.protobuf.Empty) returns (stream LaserLogUploadResp);
|
|
}
|
|
|
|
// 服务端下发日志上报事件
|
|
message LaserLogUploadResp {
|
|
// 任务id
|
|
int64 taskid = 1;
|
|
// 下发时间
|
|
string date = 2;
|
|
}
|