12 lines
285 B
Go
12 lines
285 B
Go
|
package alicloud
|
||
|
|
||
|
// Takes the result of flatmap.Expand for an array of strings
|
||
|
// and returns a []string
|
||
|
func expandStringList(configured []interface{}) []string {
|
||
|
vs := make([]string, 0, len(configured))
|
||
|
for _, v := range configured {
|
||
|
vs = append(vs, v.(string))
|
||
|
}
|
||
|
return vs
|
||
|
}
|