Files
steampipe/pkg/plugin/plugin_connection.go
2025-03-06 16:34:18 +05:30

10 lines
184 B
Go

package plugin
import "github.com/turbot/pipe-fittings/v2/hclhelpers"
type PluginConnection interface {
GetDeclRange() hclhelpers.Range
GetName() string
GetDisplayName() string
}