Go to file
Jeff Carr 2e2ef0817b added password back for the control panel json file
Signed-off-by: Jeff Carr <jcarr@wit.com>
2019-06-28 12:04:37 -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 breaking out the protobuf definitions correctly now 2019-05-25 02:46:11 -07:00
README.md fix readme 2019-05-11 11:42:57 -07:00
account.pb.go added password back for the control panel json file 2019-06-28 12:04:37 -07:00
account.proto added password back for the control panel json file 2019-06-28 12:04:37 -07:00
config.pb.go change 'buildtime' to 'builddate' 2019-06-06 20:43:17 -07:00
config.proto change 'buildtime' to 'builddate' 2019-06-06 20:43:17 -07:00
events.pb.go some 'not backwards' compatible changes 2019-05-26 00:47:51 -07:00
events.proto some 'not backwards' compatible changes 2019-05-26 00:47:51 -07:00
sampleData.go always forgetting to fix these 2019-05-26 01:38:28 -07: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