mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-23 21:09:15 -05:00
16 lines
331 B
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
|
|
}
|