1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-24 12:32:21 +00:00

Merge pull request #293 from qichengzx/master

fix typo
This commit is contained in:
Xargin 2018-08-13 10:37:32 +08:00 committed by GitHub
commit 9e114dbe0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ func main() {
由这个例子可以看出RPC的使用其实非常简单。
## 4.1.2 更安全的PRC接口
## 4.1.2 更安全的RPC接口
在涉及RPC的应用中作为开发人员一般至少有三种角色首选是服务端实现RPC方法的开发人员其次是客户端调用RPC方法的人员最后也是最重要的是制定服务端和客户端RPC接口规范的设计人员。在前面的例子中我们为了简化将以上几种角色的工作全部放到了一起虽然看似实现简单但是不利于后期的维护和工作的切割。