2013-06-01 17:57:26 -07:00

11 lines
185 B
Go

package main
import (
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/provisioner/shell"
)
func main() {
plugin.ServeProvisioner(new(shell.Provisioner))
}