11 lines
175 B
Go
11 lines
175 B
Go
package main
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/builder/vmware"
|
|
"github.com/mitchellh/packer/packer/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin.ServeBuilder(new(vmware.Builder))
|
|
}
|