2013-06-18 16:52:22 -07:00

11 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))
}