Beispiel #1
0
func ConfIntOrFatal(conf simpleconf.Config, section, key string) int64 {
	i, err := conf.GetInt(section, key)
	if err != nil {
		log.Fatalf("Could not read config value %s.%s: %s", section, key, err)
	}
	return i
}