mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-01 21:40:27 +00:00
10 lines
152 B
Go
10 lines
152 B
Go
// +build !pprof
|
|
|
|
package main
|
|
|
|
import "log"
|
|
|
|
func startPprof(x string) {
|
|
log.Println("pprof not available in release builds to reduce binary size")
|
|
}
|