librespot/protocol/proto/es_remote_config.proto

34 lines
810 B
Protocol Buffer
Raw Normal View History

2024-12-15 19:51:02 +00:00
// Extracted from: Spotify 1.2.52.442 (windows)
2021-12-10 19:33:43 +00:00
syntax = "proto3";
package spotify.remote_config.esperanto.proto;
2024-12-15 19:51:02 +00:00
import "esperanto_options.proto";
2021-12-10 19:33:43 +00:00
option objc_class_prefix = "ESP";
option java_package = "com.spotify.remoteconfig.esperanto.proto";
service RemoteConfig {
2024-12-15 19:51:02 +00:00
rpc lookupBool(LookupRequest) returns (.spotify.remote_config.esperanto.proto.BoolResponse) {}
rpc lookupInt(LookupRequest) returns (.spotify.remote_config.esperanto.proto.IntResponse) {}
rpc lookupEnum(LookupRequest) returns (.spotify.remote_config.esperanto.proto.EnumResponse) {}
2021-12-10 19:33:43 +00:00
}
message LookupRequest {
2024-12-15 19:51:02 +00:00
string scope = 1;
string name = 2;
2021-12-10 19:33:43 +00:00
}
message BoolResponse {
2024-12-15 19:51:02 +00:00
optional bool value = 1;
}
message IntResponse {
optional int32 value = 1;
}
message EnumResponse {
optional string value = 1;
2021-12-10 19:33:43 +00:00
}