Files
steampipe/pkg/pluginmanager_service/running_plugin.go

17 lines
375 B
Go

package pluginmanager_service
import (
"github.com/hashicorp/go-plugin"
pb "github.com/turbot/steampipe/v2/pkg/pluginmanager_service/grpc/proto"
)
type runningPlugin struct {
imageRef string
pluginInstance string
client *plugin.Client
reattach *pb.ReattachConfig
initialized chan struct{}
failed chan struct{}
error error
}