mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 12:52:08 +08:00

* 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
|
|
}
|