restic/internal/global/global_release.go

14 lines
183 B
Go
Raw Normal View History

2022-03-28 22:23:47 +02:00
//go:build !debug && !profile
2017-01-22 19:10:32 +01:00
package global
2017-01-22 19:10:32 +01:00
import (
"io"
"github.com/spf13/cobra"
)
func RegisterProfiling(_ *cobra.Command, _ io.Writer) {
// No profiling in release mode
}