mirror of
https://github.com/spf13/viper
synced 2024-12-22 19:47:01 +00:00
Noted that ReadInConfig returns errors that can be handled
This commit is contained in:
parent
3f5458e0d3
commit
fe3c783800
1 changed files with 4 additions and 1 deletions
|
@ -74,7 +74,10 @@ currently a single viper only supports a single config file.
|
|||
viper.SetConfigName("config") // name of config file (without extension)
|
||||
viper.AddConfigPath("/etc/appname/") // path to look for the config file in
|
||||
viper.AddConfigPath("$HOME/.appname") // call multiple times to add many search paths
|
||||
viper.ReadInConfig() // Find and read the config file
|
||||
err := viper.ReadInConfig() // Find and read the config file
|
||||
if err != nil { // Handle errors reading the config file
|
||||
panic(fmt.Errorf("Fatal error config file: %s \n", err))
|
||||
}
|
||||
|
||||
### Setting Overrides
|
||||
|
||||
|
|
Loading…
Reference in a new issue