11 lines
182 B
Go
Raw Normal View History

2013-07-29 16:42:35 -07:00
package main
import (
"github.com/mitchellh/packer/builder/amazon/chroot"
"github.com/mitchellh/packer/packer/plugin"
)
func main() {
plugin.ServeBuilder(new(chroot.Builder))
}