mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-23 01:40:26 -05:00
10 lines
175 B
Go
10 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))
|
|
}
|