mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
16 lines
175 B
Plaintext
16 lines
175 B
Plaintext
namespace flatbuf;
|
|
|
|
enum Type : int {
|
|
REPLY = 0,
|
|
VIDEO = 1,
|
|
}
|
|
|
|
table HyperionReply {
|
|
type:Type;
|
|
success:bool;
|
|
error:string;
|
|
video:int;
|
|
}
|
|
|
|
root_type HyperionReply;
|