Skip to content

Instantly share code, notes, and snippets.

@mottet-dev
Last active June 10, 2019 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mottet-dev/cd43ef05a918e2f1ad9af7cacc7cb5a8 to your computer and use it in GitHub Desktop.
Save mottet-dev/cd43ef05a918e2f1ad9af7cacc7cb5a8 to your computer and use it in GitHub Desktop.
OnRequest - Go Colly
package main
import (
"fmt"
"github.com/gocolly/colly"
)
func main() {
c := colly.NewCollector()
c.OnRequest(func(r *colly.Request) {
fmt.Println("Visiting", r.URL)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment