mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
17 lines
375 B
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
|
|
}
|