mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-22 22:59:46 -04:00
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
|
||
|
|
)
|