11 lines
175 B
Go
11 lines
175 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/terraform/builtin/providers/google"
|
||
|
"github.com/hashicorp/terraform/plugin"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
plugin.Serve(google.Provider())
|
||
|
}
|