qianlnk

Results 9 comments of qianlnk

I've add a plugin retag for protoc-gen-go. https://github.com/qianlnk/protobuf/tree/master/protoc-gen-go/retag ```shell protoc --go_out=plugins=grpc+retag:. yourproto.proto ```

@atamgp the first letter in field must be capitalized.

@atamgp have you install my retag plugin? ``` git clone https://github.com/qianlnk/protobuf.git $GOPATH/src/github.com/golang/protobuf go install $GOPATH/src/github.com/golang/protobuf/protoc-gen-go ``` this is my try: ``` syntax = "proto3"; package contracts; //import "Common.proto"; //import "google/protobuf/timestamp.proto";...

why not add a plugin like [https://github.com/qianlnk/protobuf/tree/master/protoc-gen-go/retag](https://github.com/qianlnk/protobuf/tree/master/protoc-gen-go/retag) This plugin is my original idea, don't take too much effort to attain it.But I believe that many people need it, so I...

thank you @xh4n3. my env: docker-machine: 192.168.99.100 etcd0 192.168.99.101 etcd1 192.168.99.102 etcd2 and run etcd-browser: ```sh docker run -d -it --name etcd-browser -p 12345:8000 --env ETCD_HOST=192.168.99.100 --env ETCD_PORT=4001 etcd-browser ```...

@millergarym It looks good. but it seems have some problem, could you merge my newest code and add some test code into path example?