Files
nebula/pprof_nodebug.go
T
2026-07-14 11:00:55 -05:00

12 lines
211 B
Go

//go:build !debug
package nebula
import (
"context"
"log/slog"
)
// startPprofServer is a no-op unless built with `-tags debug` (see make debug).
func startPprofServer(_ context.Context, _ *slog.Logger) {}