mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
ee2dd62a1f
* it's cdn time * tidy body closing * auto signed * fix close * update log name * remove comments
12 lines
157 B
Go
12 lines
157 B
Go
package sources
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
)
|
|
|
|
type Registry interface {
|
|
List(context.Context) []plugins.PluginSource
|
|
}
|