mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
12 lines
284 B
Go
12 lines
284 B
Go
// +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
|
|
}
|