func()

in cli/io/config.go [166:176]


func (config *Config) initialize() {
	if config.Map == nil {
		config.Map = make(map[string]interface{})
	}
	if _, found := config.Map[credentialsKey]; !found {
		config.Map[credentialsKey] = make(map[string]interface{})
	}
	if _, found := config.Map[authTypeKey]; !found {
		config.Map[authTypeKey] = make(map[string]interface{})
	}
}