()
| 36 | } |
| 37 | |
| 38 | func GetPublicSettingsMap() map[string]string { |
| 39 | items, _ := GetPublicSettingItems() |
| 40 | pSettings := make(map[string]string) |
| 41 | for _, item := range items { |
| 42 | pSettings[item.Key] = item.Value |
| 43 | } |
| 44 | return pSettings |
| 45 | } |
| 46 | |
| 47 | func GetSettingsMap() map[string]string { |
| 48 | items, _ := GetSettingItems() |
no test coverage detected