bins/{google,mailgun}

This commit is contained in:
Mitchell Hashimoto 2014-08-26 21:56:47 -07:00
parent 0c9b65f3f4
commit 8f1cbc5ab7
4 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package main
import (
"github.com/hashicorp/terraform/builtin/providers/google"
"github.com/hashicorp/terraform/plugin"
)
func main() {
plugin.Serve(google.Provider())
}

View File

@ -0,0 +1 @@
package main

View File

@ -0,0 +1,10 @@
package main
import (
"github.com/hashicorp/terraform/builtin/providers/mailgun"
"github.com/hashicorp/terraform/plugin"
)
func main() {
plugin.Serve(mailgun.Provider())
}

View File

@ -0,0 +1 @@
package main