mirror of
https://github.com/grafana/grafana.git
synced 2025-01-16 19:52:33 -06:00
12 lines
196 B
Go
12 lines
196 B
Go
package apis
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
|
|
playlistsv0alpha1 "github.com/grafana/grafana/pkg/apis/playlist/v0alpha1"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
playlistsv0alpha1.RegisterAPIService,
|
|
)
|