packer-cn/plugin/post-processor-vsphere/main.go

11 lines
196 B
Go
Raw Normal View History

2013-11-11 03:56:51 -05:00
package main
import (
"github.com/mitchellh/packer/packer/plugin"
"github.com/mitchellh/packer/post-processor/vsphere"
)
func main() {
plugin.ServePostProcessor(new(vsphere.PostProcessor))
}