pluginCatalogSnapshot returns a copy of the stored plugin catalog.
()
| 464 | |
| 465 | // pluginCatalogSnapshot returns a copy of the stored plugin catalog. |
| 466 | func (a *App) pluginCatalogSnapshot() []PluginInfo { |
| 467 | return append([]PluginInfo(nil), a.pluginCatalog...) |
| 468 | } |
| 469 | |
| 470 | // InitializePlugins wires the provided plugins into the application lifecycle. |
| 471 | func (a *App) InitializePlugins(ctx context.Context, plugins []Plugin) error { |
no outgoing calls
no test coverage detected