mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 10:59:43 -05:00
14 lines
257 B
Go
14 lines
257 B
Go
package build
|
|
|
|
import "github.com/mitchellh/packer/packer"
|
|
|
|
type Command byte
|
|
|
|
func (Command) Run(env packer.Environment, arg []string) int {
|
|
env.Ui().Say("BUILDING!")
|
|
return 0
|
|
}
|
|
|
|
func (Command) Synopsis() string {
|
|
return "build image(s) from tempate"
|
|
}
|