mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
c6327af2f3
A build script is used to ensure the source files haven’t been modified.
13 lines
274 B
Protocol Buffer
13 lines
274 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
message PopcountRequest {
|
|
}
|
|
|
|
message PopcountResult {
|
|
optional sint64 count = 0x1;
|
|
optional bool truncated = 0x2;
|
|
repeated string user = 0x3;
|
|
repeated sint64 subscriptionTimestamps = 0x4;
|
|
repeated sint64 insertionTimestamps = 0x5;
|
|
}
|
|
|