2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-31 16:10:49 +00:00
restic/internal/debug/round_tripper_release.go

13 lines
302 B
Go
Raw Normal View History

2022-03-28 20:23:47 +00:00
//go:build !debug
2017-05-01 13:31:57 +00:00
// +build !debug
package debug
import "net/http"
// RoundTripper returns a new http.RoundTripper which logs all requests (if
// debug is enabled). When debug is not enabled, upstream is returned.
func RoundTripper(upstream http.RoundTripper) http.RoundTripper {
return upstream
}