mirror of https://github.com/hashicorp/packer
parent
f49c0cb313
commit
fefd2ae208
@ -0,0 +1,15 @@
|
||||
package build
|
||||
|
||||
import "fmt"
|
||||
import "github.com/mitchellh/packer/packer"
|
||||
|
||||
type Command byte
|
||||
|
||||
func (Command) Run(env *packer.Environment, arg []string) int {
|
||||
fmt.Println("HI!")
|
||||
return 0
|
||||
}
|
||||
|
||||
func (Command) Synopsis() string {
|
||||
return "build image(s) from tempate"
|
||||
}
|
||||
Loading…
Reference in new issue