jason 1366e381a0 change il y a 1 an
..
v1 daa402dbba change il y a 1 an
ReadMe.md 3850c5a489 init il y a 2 ans
device_service.pb.go 15c75573bb mqtt设备出库时添加订阅 il y a 1 an
device_service.proto 15c75573bb mqtt设备出库时添加订阅 il y a 1 an
mqtt_service.pb.go 15c75573bb mqtt设备出库时添加订阅 il y a 1 an
mqtt_service.proto 15c75573bb mqtt设备出库时添加订阅 il y a 1 an
setup.go 1366e381a0 change il y a 1 an

ReadMe.md

必要条件

  1. 下载与安装protoc工具

    https://github.com/protocolbuffers/protobuf/releases

  2. 安装protoc Go插件:protoc-gen-go

    方式1(默认带omitempty):

    go get -u github.com/golang/protobuf/protoc-gen-go
    

    方式2(不带omitempty):

    git clone http://gitlab.sydip.com/repo/libs/go/gomodule
    cd mod /github.com/golang/protobuf@v1.3.4/protoc-gen-go/generator
    go build
    cp protoc-gen-go $GOBIN/
    

生成说明

  1. 普通生成 protoc --go_out=. *.proto
  2. 支持rpc protoc --go_out=plugins=grpc:. *.proto