mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 23:47:12 +00:00
11 lines
244 B
Go
11 lines
244 B
Go
package factorytest
|
|
|
|
import (
|
|
"github.com/SigNoz/signoz/pkg/factory"
|
|
"github.com/SigNoz/signoz/pkg/instrumentation/instrumentationtest"
|
|
)
|
|
|
|
func NewSettings() factory.ProviderSettings {
|
|
return instrumentationtest.New().ToProviderSettings()
|
|
}
|