Go to file
Jeff Carr 14ce1bda5b add Event DEMO
Signed-off-by: Jeff Carr <jcarr@wit.com>
2019-05-12 18:18:23 -07:00
example-protobuf more generic values 2019-05-11 12:21:27 -07:00
.gitignore add an example that makes some sample data and writes it out to a file 2019-05-11 11:53:43 -07:00
Makefile add 'network' and 'vm' to protobuf definition 2019-05-12 18:31:57 +00:00
README.md fix readme 2019-05-11 11:42:57 -07:00
events.pb.go add Event DEMO 2019-05-12 18:18:23 -07:00
events.proto add Event DEMO 2019-05-12 18:18:23 -07:00
sampleData.go add more VM fields 2019-05-12 19:15:03 +00:00

README.md

notes

After you do a

go get git.wit.com/wit/witProtobuf

You must build the .go files by running protoc

cd ~/go/src/git.wit.com/wit/witProtobuf
make events.pb.go

You must use the current protoc-gen-go to get version3 protobuf support

apt remove golang-goprotobuf-dev

go get -u github.com/golang/protobuf/protoc-gen-go
cd ~/go/src/github.com/golang/protobuf/protoc-gen-go
go install