feat: basic song ui + settings
This commit is contained in:
18
protos/player.proto
Normal file
18
protos/player.proto
Normal file
@@ -0,0 +1,18 @@
|
||||
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 {
|
||||
}
|
||||
Reference in New Issue
Block a user