10 lines
201 B
Protocol Buffer
10 lines
201 B
Protocol Buffer
syntax = "proto2";
|
|
package video_streaming;
|
|
|
|
message ReloadPlaybackParams {
|
|
optional string token = 1;
|
|
}
|
|
|
|
message ReloadPlayerResponse {
|
|
optional ReloadPlaybackParams reload_playback_params = 1;
|
|
}
|