
Golang
ItisNagatoYuki
这个作者很懒,什么都没留下…
展开
-
xx.go:14: running “stringer“: exec: “stringer“: executable file not found in %PATH%
golang.org/x/tools/cmd/stringer原创 2022-08-26 17:02:47 · 1427 阅读 · 0 评论 -
go swagger
可以使用swagger1 注释->文档2 json->代码goalng版本 只支持到2.0https://swagger.io/docs/specification/2-0/describing-request-body/实际使用参考https://www.cnblogs.com/xiaobaiskill/p/10696621.html原创 2021-03-10 15:25:36 · 286 阅读 · 0 评论 -
关于 golang 代理设置的
go代理设置在Go 1.13中,我们可以通过GOPROXY来控制代理,以及通过GOPRIVATE控制私有库不走代理。设置GOPROXY代理:1go env -w GOPROXY=https://goproxy.cn,direct设置GOPRIVATE来跳过私有库,比如常用的Gitlab或Gitee,中间使用逗号分隔:1go env -w GOPRIVATE=.gitlab.com,.gitee.com如果在运行go mod vendor时,提示Get https://sum.golang.o转载 2021-01-18 21:20:24 · 707 阅读 · 0 评论 -
golang 接口格式
package mainimport "fmt"type Human struct {name stringage intphone string}type Student struct {Human //匿名字段school stringloan float32}type Employee struct {Human /...原创 2018-05-15 13:05:06 · 309 阅读 · 0 评论