context_stub.go 236 B

12345678910
  1. // +build !go1.7
  2. package newrelic
  3. import "net/http"
  4. // RequestWithTransactionContext adds the transaction to the request's context.
  5. func RequestWithTransactionContext(req *http.Request, txn Transaction) *http.Request {
  6. return req
  7. }