Commit 9edc4c7d authored by Simon Esposito's avatar Simon Esposito Committed by Andrei Mihu
Browse files

Update protoc-gen-angular go.mod (#477)

Allow the angular generator protoc plugin to be installed using go get.
parent df1a5dc8
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -14,6 +14,12 @@ Install the `protoc-gen-angular` binary by running:
```shell
go build && go install
```

Otherwise you can install it using go mod as such:
```shell
go get github.com/heroiclabs/nakama/console/protoc-gen-angular
```

#### Options
Options are passed to the `protoc` flag in the following way: `--angular_out=service_name=foo,filename=bar.ts:.`.

+1 −1
Original line number Diff line number Diff line
module protoc-gen-angular
module github.com/heroiclabs/nakama/console/protoc-gen-angular

go 1.13