(content string)
| 239 | } |
| 240 | |
| 241 | func jsonToMap(content string) map[string]interface{} { |
| 242 | |
| 243 | var tmpMap = make(map[string]interface{}) |
| 244 | json.Unmarshal([]byte(content), &tmpMap) |
| 245 | |
| 246 | return (tmpMap) |
| 247 | } |
| 248 | |
| 249 | func jsonToMapInt64(content string) map[int64]interface{} { |
| 250 |
no outgoing calls
no test coverage detected