Files
kopia/cli/profile_disabled.go
2019-08-24 10:42:12 -07:00

9 lines
214 B
Go

// +build !profiling
package cli
// withProfiling runs the given callback with profiling enabled, configured according to command line flags
func withProfiling(callback func() error) error {
return callback()
}