move internal/telemetry/trace => pkg/telemetry/trace (#5541)

This commit is contained in:
Joe Kralicky 2025-03-25 10:43:04 -04:00 committed by GitHub
parent ab5f3ac7f3
commit a96ab2fe93
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
49 changed files with 40 additions and 40 deletions

View file

@ -0,0 +1,13 @@
package trace_test
import (
"os"
"testing"
"github.com/pomerium/pomerium/pkg/telemetry/trace"
)
func TestMain(m *testing.M) {
trace.UseGlobalPanicTracer()
os.Exit(m.Run())
}