Commit 0b40251a authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

plugin/builder-googlecompute: compile

parent cc113096
package main
import (
"github.com/kelseyhightower/packer-builder-googlecompute/builder/googlecompute"
"github.com/mitchellh/packer/builder/googlecompute"
"github.com/mitchellh/packer/packer/plugin"
)
func main() {
plugin.ServeBuilder(new(googlecompute.Builder))
server, err := plugin.Server()
if err != nil {
panic(err)
}
server.RegisterBuilder(new(googlecompute.Builder))
server.Serve()
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment