mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-21 16:00:13 -04: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
|
|
}
|