mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 12:02:18 +08:00

* it's cdn time * tidy body closing * auto signed * fix close * update log name * remove comments
12 lines
193 B
Go
12 lines
193 B
Go
package finder
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
)
|
|
|
|
type Finder interface {
|
|
Find(ctx context.Context, src plugins.PluginSource) ([]*plugins.FoundBundle, error)
|
|
}
|