60b4a0b2a4
* add termination stage * uid -> pluginID (for now) * also fix fakes * add simple test * Fix logger name Co-authored-by: Giuseppe Guerra <giuseppe.guerra@grafana.com> * inline stop func call Co-authored-by: Giuseppe Guerra <giuseppe.guerra@grafana.com> --------- Co-authored-by: Giuseppe Guerra <giuseppe.guerra@grafana.com>
7 lines
289 B
Go
7 lines
289 B
Go
// Package bootstrap defines the Bootstrap 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
|