Files
restic/cmd/restic/global_release.go
2025-10-03 18:22:42 +02:00

15 lines
207 B
Go

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