mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
20 lines
458 B
Protocol Buffer
20 lines
458 B
Protocol Buffer
// Extracted from: Spotify 1.2.52.442 (windows)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.mdata_cosmos.proto;
|
|
|
|
import "extension_kind.proto";
|
|
|
|
option cc_enable_arenas = true;
|
|
option java_multiple_files = true;
|
|
option optimize_for = CODE_SIZE;
|
|
option java_package = "com.spotify.mdata.cosmos.proto";
|
|
|
|
message InvalidateCacheRequest {
|
|
extendedmetadata.ExtensionKind extension_kind = 1;
|
|
repeated string entity_uri = 2;
|
|
}
|
|
|
|
message InvalidateCacheResponse {
|
|
}
|