mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
19 lines
384 B
Protocol Buffer
19 lines
384 B
Protocol Buffer
// Extracted from: Spotify 1.1.73.517 (macOS)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.canvas.proto.storage;
|
|
|
|
import "canvaz.proto";
|
|
|
|
option optimize_for = CODE_SIZE;
|
|
|
|
message CanvasCacheEntry {
|
|
string entity_uri = 1;
|
|
uint64 expires_on_seconds = 2;
|
|
canvaz.cache.EntityCanvazResponse.Canvaz canvas = 3;
|
|
}
|
|
|
|
message CanvasCacheFile {
|
|
repeated CanvasCacheEntry entries = 1;
|
|
}
|