chore: use latest golang-grpc libs

This commit is contained in:
braginini
2021-07-20 18:09:26 +02:00
parent 1a8c03bef0
commit 940578d600
6 changed files with 380 additions and 238 deletions

15
management/README.md Normal file
View File

@@ -0,0 +1,15 @@
# Wiretrustee Management Server
Install golang gRpc tools:
```bash
#!/bin/bash
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.26
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.1
```
Generate gRPC code:
```bash
#!/bin/bash
protoc -I proto/ proto/management.proto --go_out=. --go-grpc_out=.
```