35 lines
531 B
Protocol Buffer
35 lines
531 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package Aurora.Proto.Party;
|
||
|
|
||
|
import "Proto/general.proto";
|
||
|
|
||
|
service RemotePartyService {
|
||
|
//Party Resource
|
||
|
//Get Party
|
||
|
//CUSTOM: Join
|
||
|
//CUSTOM: Leave
|
||
|
|
||
|
//Member Resource
|
||
|
//List
|
||
|
//Get
|
||
|
//Create
|
||
|
//Update
|
||
|
//Delete
|
||
|
|
||
|
//Media Resource
|
||
|
//List
|
||
|
//Get
|
||
|
//CUSTOM: Stream
|
||
|
//CUSTOM: Sync
|
||
|
|
||
|
//EventSubscriptions Resource
|
||
|
//List
|
||
|
//Get
|
||
|
//Create
|
||
|
//Delete
|
||
|
|
||
|
//Event
|
||
|
//Get
|
||
|
}
|