(iMap map[string]interface{})
| 62 | } |
| 63 | |
| 64 | func ConvertMap(iMap map[string]interface{}) map[string]string { |
| 65 | retMap := map[string]string{} |
| 66 | for k, v := range iMap { |
| 67 | retMap[k] = fmt.Sprintf("%v", v) |
| 68 | } |
| 69 | return retMap |
| 70 | } |
no outgoing calls
no test coverage detected