Skip to main content

go-micro hello world

· One min read

最近在学一点点go 相关的内容,遇到了很多坑

什么是mDNS

相关阅读

gomicro 遇到的编译不过的问题(时间是2019/9/19)

我但是用的go 版本是1.10,然后编译的时候报crypto/ed25519 这个包找不到

  • 怎么解决?

升级到go 1.13以上版本,好像1.13才有这个包

相关记录

// In Go 1.13, the ed25519 package was promoted to the standard library as
// crypto/ed25519, and this package became a wrapper for the standard library one.
//
// +build !go1.13

整个调用流程和抓包

// todo