mirror of
https://github.com/slackhq/nebula.git
synced 2026-08-15 22:37:00 +02:00
12 lines
211 B
Go
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) {}
|