文件名称:setting:通过环境配置
文件大小:3KB
文件格式:ZIP
更新时间:2024-07-13 17:01:34
Go
环境 一个从环境加载配置的简单实用程序(带有可选的默认值) type Config struct { Port string `env:"PORT" default:"3000"` } config := new ( Config ) setting . Load ( config ) // If the PORT environment variable is set, `config.Port` will // now be its value (`os.Getenv("PORT")`). Otherwise it will // be "3000" env和default都是可选的: type Config struct { Name string `env:"NAME"` Location struct { City string `default:"S
【文件预览】:
setting-master
----setting_test.go(1KB)
----LICENSE(1KB)
----setting.go(1KB)
----.gitignore(266B)
----README.md(972B)