packer-cn/plugin/command-validate/main.go

11 lines
179 B
Go
Raw Normal View History

2013-06-13 13:03:44 -04:00
package main
import (
"github.com/mitchellh/packer/command/validate"
"github.com/mitchellh/packer/packer/plugin"
)
func main() {
plugin.ServeCommand(new(validate.Command))
}