packer/plugin/command-build/main.go
2013-05-07 11:39:32 -07:00

10 lines
173 B
Go

package main
import (
"github.com/mitchellh/packer/command/build"
"github.com/mitchellh/packer/packer/plugin"
)
func main() {
plugin.ServeCommand(new(build.Command))
}