mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-04 04:40:39 +08: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()
|
|
}
|