packer/plugin/builder-digital-ocean/main.go
Mitchell Hashimoto 3983edb1a3 fmt
2013-06-15 11:07:30 -07:00

10 lines
187 B
Go

package main
import (
"github.com/mitchellh/packer/builder/digitalocean"
"github.com/mitchellh/packer/packer/plugin"
)
func main() {
plugin.ServeBuilder(new(digitalocean.Builder))
}