mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
24 lines
610 B
Protocol Buffer
24 lines
610 B
Protocol Buffer
// Extracted from: Spotify 1.1.73.517 (macOS)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.metadata_esperanto.proto;
|
|
|
|
import "metadata_cosmos.proto";
|
|
|
|
option java_multiple_files = true;
|
|
option optimize_for = CODE_SIZE;
|
|
option java_package = "com.spotify.metadata.esperanto.proto";
|
|
|
|
service ClassicMetadataService {
|
|
rpc GetEntity(GetEntityRequest) returns (GetEntityResponse);
|
|
rpc MultigetEntity(metadata_cosmos.proto.MultiRequest) returns (metadata_cosmos.proto.MultiResponse);
|
|
}
|
|
|
|
message GetEntityRequest {
|
|
string uri = 1;
|
|
}
|
|
|
|
message GetEntityResponse {
|
|
metadata_cosmos.proto.MetadataItem item = 1;
|
|
}
|