Golang convertit la chaîne JSON en carte

jsonMap := make(map[string]interface{})
err := json.Unmarshal([]byte(jsonStr), &jsonMap)
Delightful Dormouse