aurora/Aurora/Proto/playback.proto

21 lines
346 B
Protocol Buffer
Raw Normal View History

2019-05-31 14:17:14 +00:00
syntax = "proto3";
2019-07-05 18:17:09 +00:00
package Aurora.Proto;
2019-05-31 14:17:14 +00:00
2019-07-05 18:17:09 +00:00
import "Proto/general.proto";
2019-05-31 14:17:14 +00:00
service RemotePlaybackService {
2019-05-31 14:17:14 +00:00
//Playback Service
rpc GetPartyStream(Empty) returns (stream Chunk) {};
}
enum TransferStatusCode {
Unknown = 0;
Ok = 1;
Failed = 2;
}
message TransferStatus {
string Message = 1;
TransferStatusCode Code = 2;
}