mirror of
https://github.com/restic/restic.git
synced 2025-12-08 06:09:56 +00:00
13 lines
183 B
Go
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
|
|
}
|