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.
49 lines
902 B
Protocol Buffer
49 lines
902 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
message CountReply {
|
|
repeated int32 counts = 0x1;
|
|
}
|
|
|
|
message UserListRequest {
|
|
optional string last_result = 0x1;
|
|
optional int32 count = 0x2;
|
|
optional bool include_length = 0x3;
|
|
}
|
|
|
|
message UserListReply {
|
|
repeated User users = 0x1;
|
|
optional int32 length = 0x2;
|
|
}
|
|
|
|
message User {
|
|
optional string username = 0x1;
|
|
optional int32 subscriber_count = 0x2;
|
|
optional int32 subscription_count = 0x3;
|
|
}
|
|
|
|
message ArtistListReply {
|
|
repeated Artist artists = 0x1;
|
|
}
|
|
|
|
message Artist {
|
|
optional string artistid = 0x1;
|
|
optional int32 subscriber_count = 0x2;
|
|
}
|
|
|
|
message StringListRequest {
|
|
repeated string args = 0x1;
|
|
}
|
|
|
|
message StringListReply {
|
|
repeated string reply = 0x1;
|
|
}
|
|
|
|
message TopPlaylistsRequest {
|
|
optional string username = 0x1;
|
|
optional int32 count = 0x2;
|
|
}
|
|
|
|
message TopPlaylistsReply {
|
|
repeated string uris = 0x1;
|
|
}
|
|
|