mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
18 lines
398 B
Protocol Buffer
18 lines
398 B
Protocol Buffer
// Extracted from: Spotify 1.1.73.517 (macOS)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.your_library.proto;
|
|
|
|
import "your_library_pseudo_playlist_config.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message YourLibraryRequestHeader {
|
|
bool remaining_entities = 9;
|
|
}
|
|
|
|
message YourLibraryRequest {
|
|
YourLibraryRequestHeader header = 1;
|
|
YourLibraryPseudoPlaylistConfig pseudo_playlist_config = 4;
|
|
}
|