Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module github.com/go-coldbrew/tracing

go 1.25.8
go 1.25.9
Comment thread
ankurs marked this conversation as resolved.

require (
github.com/newrelic/go-agent/v3 v3.42.0
go.opentelemetry.io/otel v1.42.0
go.opentelemetry.io/otel/trace v1.42.0
go.uber.org/goleak v1.3.0
google.golang.org/grpc v1.79.3
)

Expand Down
11 changes: 11 additions & 0 deletions goleak_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package tracing
Comment thread
ankurs marked this conversation as resolved.

import (
"testing"

"go.uber.org/goleak"
)

func TestMain(m *testing.M) {
goleak.VerifyTestMain(m)
}
Loading