mirror of
https://github.com/octoleo/restic.git
synced 2024-11-11 15:51:02 +00:00
11 lines
220 B
Go
11 lines
220 B
Go
//go:build !debug && !profile
|
|
// +build !debug,!profile
|
|
|
|
package main
|
|
|
|
// runDebug is a noop without the debug tag.
|
|
func runDebug() error { return nil }
|
|
|
|
// stopDebug is a noop without the debug tag.
|
|
func stopDebug() {}
|