geziyor/request.go
2019-06-13 22:08:45 +03:00

14 lines
199 B
Go

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{}
rendered bool
}