mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 05:22:32 +08:00
20 lines
494 B
Go
20 lines
494 B
Go
package appregistry
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
|
|
"github.com/grafana/grafana/pkg/registry/apps/advisor"
|
|
"github.com/grafana/grafana/pkg/registry/apps/alerting/notifications"
|
|
"github.com/grafana/grafana/pkg/registry/apps/investigations"
|
|
"github.com/grafana/grafana/pkg/registry/apps/playlist"
|
|
)
|
|
|
|
var WireSet = wire.NewSet(
|
|
ProvideAppInstallers,
|
|
ProvideBuilderRunners,
|
|
playlist.RegisterAppInstaller,
|
|
investigations.RegisterApp,
|
|
advisor.RegisterApp,
|
|
notifications.RegisterApp,
|
|
)
|