proto file for protobuf type

This commit is contained in:
MaximZaitsev
2016-08-19 11:41:34 +03:00
parent 8b6f039786
commit aa36856a0a
4 changed files with 12 additions and 17 deletions
-17
View File
@@ -1,17 +0,0 @@
{
"name": "stflashserver",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node main.js"
},
"author": "maxim",
"license": "ISC",
"devDependencies": {
"udev": "^0.3.0",
"commander": "^2.9.0",
"protobufjs": "^5.0.1"
}
}
@@ -0,0 +1,12 @@
syntax = "proto3";
package carkot;
message TaskRequest {
TYPE protoBufType = 1;
enum TYPE {
DEBUG = 0;
ROUTE = 0;
}
}