12 lines
206 B
Go
12 lines
206 B
Go
|
package hcl2template
|
||
|
|
||
|
// ComponentKind helps enumerate what kind of components exist in this Package.
|
||
|
type ComponentKind int
|
||
|
|
||
|
const (
|
||
|
Builder ComponentKind = iota
|
||
|
Provisioner
|
||
|
PostProcessor
|
||
|
Datasource
|
||
|
)
|