2014-07-19 02:20:28 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/terraform/builtin/providers/digitalocean"
|
|
|
|
"github.com/hashicorp/terraform/plugin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-09-28 20:51:39 +02:00
|
|
|
plugin.Serve(&plugin.ServeOpts{
|
2014-11-17 18:55:45 +01:00
|
|
|
ProviderFunc: digitalocean.Provider,
|
2014-09-28 20:51:39 +02:00
|
|
|
})
|
2014-07-19 02:20:28 +02:00
|
|
|
}
|