gRPC

docs

エラーコード

17個ある

grpc-go/codes.go at master · grpc/grpc-go · GitHub

実装

2022-05-26

2023-01-29
Golang のprocobuf生成

#!/bin/sh
 
set -xe
 
# go_out: リクエスト, レスポンス
# gp_grpc_out: サービス部分
 
protoc homvm.proto \
    -I=proto/ \
    --go_out=./proto \
    --go_opt=paths=source_relative \
    --go-grpc_out=./proto \
    --go-grpc_opt=paths=source_relative

参考文献