* discovery * flesh out * add docs * remove unused func * bootstrap stage * fix docs * update docs * undo unnecessary changes * add end tag * update doc * fix linter * fix * tidy * update docs * add class to filter func * apply PR feedback * fix test
7 lines
253 B
Go
7 lines
253 B
Go
// Package discovery defines the first stage of the plugin loader pipeline.
|
|
|
|
// The Discovery stage must implement the Discoverer interface.
|
|
// - Discover(ctx context.Context, src plugins.PluginSource) ([]*plugins.FoundBundle, error)
|
|
|
|
package discovery
|