《go入门grpc》第七章: 创建grpc服务器

一、介绍

经过前面的基础知识的讲解,我们了解到了 protoc 命令的作用,帮我们自动化生成
go代码。主要有.pb.go 以及_grpc.pb.go 文件。
目前的代码我放到了github上,可以查看完整的代码。
https://github.com/hisheng/grpc-demo1
我们再复习一下当前的目录结构如下:

➜  grpc-demo1 git:(master) ✗ tree
.
├── Makefile
├── api
│   ├── hello.pb.go
│   ├── hello.proto
│   ├── hello_grpc.pb.go
│   ├── user.pb.go
│   └── user.proto
├── go.mod
└── go.sum

1 directory, 8 files

你可能感兴趣的:(gogrpc)