1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 17:59:24 +02:00
librespot/protocol/proto/canvas_storage.proto
2021-12-10 20:33:43 +01:00

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;
}