mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-03-27 16:40:10 +08:00
28 lines
446 B
Protocol Buffer
28 lines
446 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bilibili.broadcast.v1;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
// ModManager
|
|
service ModManager {
|
|
//
|
|
rpc WatchResource(google.protobuf.Empty) returns (stream ModResourceResp);
|
|
}
|
|
|
|
//
|
|
message ModResourceResp {
|
|
//
|
|
int32 atcion = 1;
|
|
//
|
|
string app_key = 2;
|
|
//
|
|
string pool_name = 3;
|
|
//
|
|
string module_name = 4;
|
|
//
|
|
int64 module_version = 5;
|
|
//
|
|
int64 list_version = 6;
|
|
}
|