geziyor/request.go

13 lines
223 B
Go

package geziyor
import (
"net/http"
)
// Request is a small wrapper around *http.Request that contains Metadata and Rendering option
type Request struct {
*http.Request
Meta map[string]interface{}
Rendered bool
}