2013-06-13 10:29:23 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mitchellh/packer/packer/plugin"
|
2013-06-15 14:06:39 -04:00
|
|
|
"github.com/mitchellh/packer/builder/digitalocean"
|
2013-06-13 10:29:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
plugin.ServeBuilder(new(digitalocean.Builder))
|
|
|
|
}
|