mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
18 lines
438 B
Go
18 lines
438 B
Go
package apiregistry
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
|
|
"github.com/grafana/grafana/pkg/registry/apis/example"
|
|
"github.com/grafana/grafana/pkg/registry/apis/playlist"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideRegistryServiceSink, // dummy background service that forces registration
|
|
|
|
// Each must be added here *and* in the ServiceSink above
|
|
// playlistV0.RegisterAPIService,
|
|
playlist.RegisterAPIService,
|
|
example.RegisterAPIService,
|
|
)
|