文件名称:flagconf:Go 程序的简单 TOML + 标志配置
文件大小:7KB
文件格式:ZIP
更新时间:2024-06-24 15:20:51
Go
标志配置 包 flagconf 结合了标准库的和 Andrew Gallant 优秀的。 该包从 TOML 配置文件设置程序选项,同时还允许使用命令行标志覆盖设置。 安装 $ go get -u github.com/cespare/flagconf 用法 文档在。 这是一个小例子: import ( "github.com/cespare/flagconf" ) type Config struct { MaxProcs int `desc:"maximum OS threads"` Addr string `desc:"listen address (with port)"` } func main () { // Set the defaults. config := Config { MaxProcs : 4 , } f
【文件预览】:
flagconf-master
----flagconf_test.go(5KB)
----LICENSE(1KB)
----flagconf.go(10KB)
----README.md(1KB)