remove protobuf (part 2)

This commit is contained in:
Paulchen-Panther
2018-12-30 22:07:53 +01:00
parent 559311e18c
commit 38950edf35
54 changed files with 1441 additions and 377 deletions

View File

@@ -1,15 +1,8 @@
namespace flatbuf;
namespace hyperionnet;
enum Type : int {
REPLY = 0,
VIDEO = 1,
}
table HyperionReply {
type:Type;
success:bool;
table Reply {
error:string;
video:int;
video:int = -1;
}
root_type HyperionReply;
root_type Reply;