mirror of
https://github.com/restic/restic.git
synced 2026-02-17 01:28:28 -05:00
10 lines
182 B
Go
10 lines
182 B
Go
//go:build !debug && !profile
|
|
// +build !debug,!profile
|
|
|
|
package main
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
func registerProfiling(_ *cobra.Command) {
|
|
// No profiling in release mode
|
|
}
|