摘要:
Go基础知识梳理(三) 结构 type Person struct { name string sex int } func main() { //推荐写法 person := Person{ name: "张三", sex: 1, } //不推荐写法 person = Person{"李四", 1 阅读全文
摘要:
Go之Logrus用法入门 Logrus是Go (golang)的结构化日志程序,完全兼容标准库的API日志程序。 Logrus is a structured logger for Go (golang), completely API compatible with the standard l 阅读全文