feat: basic music backend

This commit is contained in:
2024-11-24 00:10:56 +01:00
commit 51a57ebd40
23 changed files with 4091 additions and 0 deletions

18
proto/player.proto Normal file
View 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 {
}