mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
21 lines
421 B
Protocol Buffer
21 lines
421 B
Protocol Buffer
// Extracted from: Spotify 1.1.73.517 (macOS)
|
|
|
|
syntax = "proto3";
|
|
|
|
package spotify.remote_config.esperanto.proto;
|
|
|
|
option objc_class_prefix = "ESP";
|
|
option java_package = "com.spotify.remoteconfig.esperanto.proto";
|
|
|
|
service RemoteConfig {
|
|
rpc lookupBool(LookupRequest) returns (BoolResponse);
|
|
}
|
|
|
|
message LookupRequest {
|
|
string component_id = 1;
|
|
string key = 2;
|
|
}
|
|
|
|
message BoolResponse {
|
|
bool value = 1;
|
|
}
|