Refactored to only having one executor per platform
This commit is contained in:
@ -2,8 +2,9 @@ syntax = "proto3";
|
||||
|
||||
package Aurora.Backend.Proto;
|
||||
|
||||
// PartyServic definition
|
||||
service PartyService{
|
||||
import "Backend/Proto/general.proto";
|
||||
|
||||
service RemotePartyService {
|
||||
//Party Service
|
||||
rpc JoinParty(JoinPartyRequest) returns (JoinPartyResponse);
|
||||
rpc LeaveParty(LeavePartyRequest) returns (LeavePartyResponse);
|
@ -4,7 +4,7 @@ package Aurora.Backend.Proto;
|
||||
|
||||
import "Backend/Proto/general.proto";
|
||||
|
||||
service PlaybackService {
|
||||
service RemotePlaybackService {
|
||||
//Playback Service
|
||||
rpc GetPartyStream(Empty) returns (stream Chunk) {};
|
||||
}
|
Reference in New Issue
Block a user