14 lines
199 B
Go
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
|
|
}
|