Results 1 issues of Xin Jin

Very basic code ` func main() { c := colly.NewCollector() // Find and visit all links c.OnHTML("*", func(e *colly.HTMLElement) { fmt.Println(e) e.Request.Visit(e.Attr("href")) }) c.OnRequest(func(r *colly.Request) { fmt.Println("Visiting", r.URL) }) c.CheckHead...

question