Files
steampipe/pkg/pluginmanager_service/running_plugin.go

16 lines
331 B
Go

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