github.com/jerryclinesmith/packer@v0.3.7/plugin/post-processor-vagrant/main.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/mitchellh/packer/packer/plugin"
     5  	"github.com/mitchellh/packer/post-processor/vagrant"
     6  )
     7  
     8  func main() {
     9  	plugin.ServePostProcessor(new(vagrant.PostProcessor))
    10  }