mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
### Summary feat(.): initialize all factories #### Related Issues / PR's Removed all redundant commits of https://github.com/SigNoz/signoz/pull/6843 Closes https://github.com/SigNoz/signoz/pull/6782
11 lines
235 B
Go
11 lines
235 B
Go
package providertest
|
|
|
|
import (
|
|
"go.signoz.io/signoz/pkg/factory"
|
|
"go.signoz.io/signoz/pkg/instrumentation/instrumentationtest"
|
|
)
|
|
|
|
func NewSettings() factory.ProviderSettings {
|
|
return instrumentationtest.New().ToProviderSettings()
|
|
}
|