GetValidAppTypes returns the valid apptype keys from the appTypeMatrix
()
| 576 | |
| 577 | // GetValidAppTypes returns the valid apptype keys from the appTypeMatrix |
| 578 | func GetValidAppTypes() []string { |
| 579 | keys := make([]string, 0, len(appTypeMatrix)) |
| 580 | for k := range appTypeMatrix { |
| 581 | keys = append(keys, k) |
| 582 | sort.Sort(natural.StringSlice(keys)) |
| 583 | } |
| 584 | return keys |
| 585 | } |
no outgoing calls