restic/internal/global/global_release.go
2025-11-30 11:53:23 +01:00

13 lines
183 B
Go

//go:build !debug && !profile
package global
import (
"io"
"github.com/spf13/cobra"
)
func RegisterProfiling(_ *cobra.Command, _ io.Writer) {
// No profiling in release mode
}