Default config starting block to 0

This commit is contained in:
Edvard
2019-02-11 11:27:33 +01:00
parent 85cec480dc
commit 553fdbfa09
2 changed files with 3 additions and 2 deletions
@@ -30,11 +30,12 @@ func getEnvironmentString(key string) string {
return value
}
// Returns an int from the environment, defaulting to 0 if it does not exist
func getEnvironmentInt64(key string) int64 {
initConfig()
value := viper.GetInt64(key)
if value == -1 {
panic(fmt.Sprintf("No environment configuration variable set for key: \"%v\"", key))
return 0
}
return value
}