mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
11 lines
183 B
Go
11 lines
183 B
Go
|
// +build !go1.7
|
||
|
|
||
|
package profile
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
// mock trace support for Go 1.6 and earlier.
|
||
|
|
||
|
func startTrace(w io.Writer) error { return nil }
|
||
|
func stopTrace() {}
|