This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
chronozinc/defaults.go
2016-11-25 00:10:54 +01:00

12 lines
196 B
Go

package main
import "github.com/spf13/viper"
func setDefaults() {
viper.SetDefault("Processes", 1)
viper.SetDefault("RawDir", "raw")
viper.SetDefault("Solvers", map[string]interface{}{})
}