https://github.com/ozeer/grpc-client
gRPC client端demo
https://github.com/ozeer/grpc-client
grpc grpc-client grpc-go grpc-php grpc-php-client grpc-python
Last synced: 3 months ago
JSON representation
gRPC client端demo
- Host: GitHub
- URL: https://github.com/ozeer/grpc-client
- Owner: ozeer
- Created: 2023-08-15T11:00:48.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-08-17T06:13:45.000Z (almost 2 years ago)
- Last Synced: 2025-01-17T22:12:05.549Z (5 months ago)
- Topics: grpc, grpc-client, grpc-go, grpc-php, grpc-php-client, grpc-python
- Language: Python
- Homepage:
- Size: 6.52 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#### gRPC介绍
#### 安装Protobuf
#### proto文件编写
###### 生成Go版本gRPC代码(client+server)
```
protoc --go_out=. hello.proto
protoc --go-grpc_out=. hello.proto
```#### proto文件介绍
#### 服务端编写(见grpc-server项目)
#### 客户端编写(见各个client端的README.md)
#### 代码测试
#### 代码优化
#### 其他部分