2025-04-01 10:38:02 +09:00

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