Metadata adding on requests support added. StartRequests function implemented.

This commit is contained in:
Musab Gültekin
2019-06-12 21:30:45 +03:00
parent bd8d58576f
commit f7f4e401e2
5 changed files with 74 additions and 25 deletions

11
request.go Normal file
View File

@ -0,0 +1,11 @@
package geziyor
import (
"net/http"
)
// Request is a small wrapper around *http.Request that contains Metadata
type Request struct {
*http.Request
Meta map[string]interface{}
}