mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-28 23:00:43 -05:00
10 lines
181 B
Go
10 lines
181 B
Go
package plugin
|
|
|
|
import "github.com/turbot/pipe-fittings/hclhelpers"
|
|
|
|
type PluginConnection interface {
|
|
GetDeclRange() hclhelpers.Range
|
|
GetName() string
|
|
GetDisplayName() string
|
|
}
|