First pass at sync working. Need to ignore for special cases
This commit is contained in:
15
Aurora/Proto/sync.proto
Normal file
15
Aurora/Proto/sync.proto
Normal file
@ -0,0 +1,15 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package Aurora.Proto.Sync;
|
||||
|
||||
import "Proto/general.proto";
|
||||
import "google/protobuf/timestamp.proto";
|
||||
|
||||
service RemoteSyncService {
|
||||
rpc GetMediaSync(Aurora.Proto.General.Empty) returns (stream Sync) {};
|
||||
}
|
||||
|
||||
message Sync {
|
||||
int64 serverTime = 1;
|
||||
float trackTime = 2;
|
||||
}
|
Reference in New Issue
Block a user