(name, site, url string)
| 410 | } |
| 411 | |
| 412 | func writeResult(name, site, url string) { |
| 413 | tmpList, _ := detectResultMap.Load(name) |
| 414 | userResultList, _ := tmpList.([][]string) |
| 415 | userResultList = append(userResultList, []string{name, site, url}) |
| 416 | detectResultMap.Store(name, userResultList) |
| 417 | } |
| 418 | |
| 419 | func writeWhois(name, site string, whoisData gjson.Result) { |
| 420 | tmpMap, _ := whoisMap.Load(name) |