ff7ba54cbc
* add investigations group? * Investigations: Add experimental app platform backend * change `grafana-app-sdk/logging` version * investigations: add feature flag to test --------- Co-authored-by: Sven Grossmann <svennergr@gmail.com>
20 lines
538 B
Go
20 lines
538 B
Go
package appregistry
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
|
|
"github.com/grafana/grafana/apps/advisor/pkg/app/checkregistry"
|
|
"github.com/grafana/grafana/pkg/registry/apps/advisor"
|
|
"github.com/grafana/grafana/pkg/registry/apps/investigations"
|
|
"github.com/grafana/grafana/pkg/registry/apps/playlist"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideRegistryServiceSink,
|
|
playlist.RegisterApp,
|
|
investigations.RegisterApp,
|
|
advisor.RegisterApp,
|
|
checkregistry.ProvideService,
|
|
wire.Bind(new(checkregistry.CheckService), new(*checkregistry.Service)),
|
|
)
|