mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
17 lines
449 B
Protocol Buffer
17 lines
449 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.your_library.proto;
|
|
|
|
import "your_library_config.proto";
|
|
|
|
option java_multiple_files = true;
|
|
option optimize_for = CODE_SIZE;
|
|
option java_package = "spotify.your_library.esperanto.proto";
|
|
|
|
message YourLibraryContainsRequest {
|
|
repeated string requested_uri = 3;
|
|
YourLibraryPseudoPlaylistConfig pseudo_playlist_config = 4;
|
|
int32 update_throttling = 5;
|
|
}
|