14 lines
241 B
Go
14 lines
241 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
|
|
Cancelled bool
|
|
}
|