mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
13 lines
160 B
Go
13 lines
160 B
Go
package apiregistry
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
|
|
"github.com/grafana/grafana/pkg/apis"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideService,
|
|
apis.WireSet,
|
|
)
|