Protobufs compile

This commit is contained in:
watsonb8
2019-05-31 10:17:14 -04:00
parent 9354c0b27b
commit 6503d2c410
9 changed files with 228 additions and 42 deletions

View File

@ -0,0 +1,21 @@
syntax = "proto3";
package Aurora.Backend.Proto;
import "Backend/Proto/general.proto";
service PlaybackService {
//Playback Service
rpc GetPartyStream(Empty) returns (stream Chunk) {};
}
enum TransferStatusCode {
Unknown = 0;
Ok = 1;
Failed = 2;
}
message TransferStatus {
string Message = 1;
TransferStatusCode Code = 2;
}