mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
18 lines
245 B
Go
18 lines
245 B
Go
package metrics
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideService,
|
|
ProvideRegisterer,
|
|
ProvideGatherer,
|
|
)
|
|
|
|
var WireSetForTest = wire.NewSet(
|
|
ProvideService,
|
|
ProvideRegistererForTest,
|
|
ProvideGathererForTest,
|
|
)
|