mirror of
https://github.com/restic/restic.git
synced 2025-12-13 16:43:10 +00:00
15 lines
207 B
Go
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
|
|
}
|