Files
librespot-spotizerr-dev/proto/storage-resolve.proto
cool.gitter.not.me.again.duh 92a7a5d84e first commit
2025-05-30 21:28:21 -06:00

19 lines
331 B
Protocol Buffer

syntax = "proto3";
package spotify.download.proto;
option optimize_for = CODE_SIZE;
option java_package = "com.spotify.storage";
message StorageResolveResponse {
Result result = 1;
enum Result {
CDN = 0;
STORAGE = 1;
RESTRICTED = 3;
}
repeated string cdnurl = 2;
bytes fileid = 4;
}