mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-01-08 10:45:04 +02:00
11 lines
236 B
Go
11 lines
236 B
Go
|
// +build !go1.7
|
||
|
|
||
|
package newrelic
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
// RequestWithTransactionContext adds the transaction to the request's context.
|
||
|
func RequestWithTransactionContext(req *http.Request, txn Transaction) *http.Request {
|
||
|
return req
|
||
|
}
|