mapstructure 转换库 简介 mapstructure用于将通用的map[string]interface{}解码到对应的 Go 结构体中,或者执行相反的操作。很多
Go leveldb库 github地址:https://github.com/syndtr/goleveldb 安装: go get github.com/syndtr/goleveldb/leveldb 简介: levelDB在
Go ini库 参考:https://juejin.cn/post/6844904048764649479 简介 ini 是 Windows 上常用的配置文件格式。MySQ
homedir家目录 GitHub地址:https://github.com/mitchellh/go-homedir 使用os/user获取用
Go Fsnotify库 官方仓库:github.com/fsnotify/fsnotify 用于监控文件或目录的改变 1、官网示例 package main import ( "log" "github.com/fsnotify/fsnotify" ) func main()
Go fmt模块 参考链接:https://www.liwenzhou.com/posts/Go/go_fmt/ fmt fmt包实现了类似C语言prin