(configFile string, fs ...func())
| 9 | var config *Config |
| 10 | |
| 11 | func Init(configFile string, fs ...func()) error { |
| 12 | config = &Config{} |
| 13 | return conf.Parse(configFile, config, fs...) |
| 14 | } |
| 15 | |
| 16 | func Show(hiddenFields ...string) string { |
| 17 | return conf.Show(config, hiddenFields...) |