2013-06-26 17:37:46 -07:00

11 lines
196 B
Go

package main
import (
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/post-processor/vagrant"
)
func main() {
plugin.ServePostProcessor(new(vagrant.PostProcessor))
}