Plugins: Expose function to retrieve gcom info (#99372)

This commit is contained in:
Andres Martinez Gotor
2025-01-22 16:41:34 +02:00
committed by GitHub
parent 23f495d4cd
commit 003f0e5918
5 changed files with 61 additions and 0 deletions
+4
View File
@@ -272,6 +272,10 @@ func (r *FakePluginRepo) PluginVersion(ctx context.Context, pluginID, version st
return repo.VersionData{}, nil
}
func (r *FakePluginRepo) PluginInfo(ctx context.Context, pluginID string) (*repo.PluginInfo, error) {
return &repo.PluginInfo{}, nil
}
type fakeTracerProvider struct {
noop.TracerProvider
}