grafana/pkg/plugins/manager/sources/ifaces.go
Will Browne ee2dd62a1f
Plugins: Refactor loader + finder to support multiple sourcing methods (#64735)
* it's cdn time

* tidy body closing

* auto signed

* fix close

* update log name

* remove comments
2023-03-20 14:35:49 +01:00

12 lines
157 B
Go

package sources
import (
"context"
"github.com/grafana/grafana/pkg/plugins"
)
type Registry interface {
List(context.Context) []plugins.PluginSource
}