hyperion.ng/libsrc/flatbufserver/hyperion_reply.fbs

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;