mirror of
https://github.com/turbot/steampipe.git
synced 2026-01-02 22:00:05 -05:00
10 lines
184 B
Go
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
|
|
}
|