(key string)
| 740 | } |
| 741 | |
| 742 | func getConfigKeyNamespace(key string) string { |
| 743 | colonIdx := strings.Index(key, ":") |
| 744 | if colonIdx == -1 { |
| 745 | return "" |
| 746 | } |
| 747 | return key[:colonIdx] |
| 748 | } |
| 749 | |
| 750 | func orderConfigKeys(m waveobj.MetaMapType) []string { |
| 751 | keys := make([]string, 0, len(m)) |