Global and Domain Concurrency limit implemented. Updated README

This commit is contained in:
Musab Gültekin
2019-06-09 11:53:40 +03:00
parent a9aaf86df3
commit d967555b62
4 changed files with 80 additions and 9 deletions

View File

@ -12,7 +12,7 @@ func TestGeziyor_Simple(t *testing.T) {
geziyor.NewGeziyor(geziyor.Options{
StartURLs: []string{"http://api.ipify.org"},
ParseFunc: func(r *geziyor.Response) {
fmt.Println(string(r.Body))
fmt.Println(r.Doc.Text())
},
}).Start()
}