mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 10:42:40 +08:00

* 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
286 B
Go
7 lines
286 B
Go
// Package bootstrap defines the second stage of the plugin loader pipeline.
|
|
//
|
|
// The Bootstrap stage must implement the Bootstrapper interface.
|
|
// - Bootstrap(ctx context.Context, src plugins.PluginSource, bundles []*plugins.FoundBundle) ([]*plugins.Plugin, error)
|
|
|
|
package bootstrap
|