mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-15 22:20:33 -04:00
14 lines
278 B
Go
14 lines
278 B
Go
// Copyright IBM Corp. 2013, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package hcl2template
|
|
|
|
// ComponentKind helps enumerate what kind of components exist in this Package.
|
|
type ComponentKind int
|
|
|
|
const (
|
|
Builder ComponentKind = iota
|
|
Provisioner
|
|
PostProcessor
|
|
Datasource
|
|
)
|