summaryrefslogtreecommitdiff
path: root/msg.proto
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-05-14 00:31:48 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-05-14 00:31:48 -0400
commit1ad8a2e0881751e7ca642a6dde503dd7b7c3604f (patch)
tree110143a4f35556dcdf3befa8c648b79ea8c826de /msg.proto
parent4db5a80ba314e584adafd0b0ea1db05d70200f6a (diff)
Send protobuf
Diffstat (limited to 'msg.proto')
-rw-r--r--msg.proto13
1 files changed, 13 insertions, 0 deletions
diff --git a/msg.proto b/msg.proto
new file mode 100644
index 000000000..d76875e13
--- /dev/null
+++ b/msg.proto
@@ -0,0 +1,13 @@
+syntax = "proto3";
+package main;
+
+
+message Msg {
+ enum MsgKind {
+ LOAD = 0;
+ }
+ MsgKind kind = 10;
+
+ // LOAD
+ repeated string argv = 11;
+}