19 lines
381 B
Protocol Buffer
19 lines
381 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import 'google/protobuf/empty.proto';
|
|
|
|
package player;
|
|
|
|
service Player {
|
|
rpc PlayTrack(PlayTrackRequest) returns (PlayTrackResponse);
|
|
rpc ResumeTrack(google.protobuf.Empty) returns (google.protobuf.Empty);
|
|
rpc PauseTrack(google.protobuf.Empty) returns (google.protobuf.Empty);
|
|
}
|
|
|
|
message PlayTrackRequest {
|
|
string hash = 1;
|
|
}
|
|
|
|
message PlayTrackResponse {
|
|
}
|