mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 01:16:31 -06:00
18 lines
496 B
Go
18 lines
496 B
Go
package apis
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
|
|
examplev0alpha1 "github.com/grafana/grafana/pkg/apis/example/v0alpha1"
|
|
"github.com/grafana/grafana/pkg/apis/playlist"
|
|
playlistsv0alpha1 "github.com/grafana/grafana/pkg/apis/playlist/v0alpha1"
|
|
)
|
|
|
|
// WireSet is the list of all services
|
|
// NOTE: you must also register the service in: pkg/registry/apis/apis.go
|
|
var WireSet = wire.NewSet(
|
|
playlist.RegisterAPIService,
|
|
playlistsv0alpha1.RegisterAPIService,
|
|
examplev0alpha1.RegisterAPIService,
|
|
)
|