2
2
mirror of https://github.com/octoleo/restic.git synced 2025-02-02 11:58:26 +00:00

9 lines
202 B
Go
Raw Normal View History

2017-07-23 14:24:45 +02:00
package profile_test
import "github.com/pkg/profile"
func ExampleTraceProfile() {
// use execution tracing, rather than the default cpu profiling.
defer profile.Start(profile.TraceProfile).Stop()
}