go tool fix google (#2019)

This commit is contained in:
Riley Karson 2018-09-10 15:07:48 -07:00 committed by GitHub
parent 7bdba7592b
commit 37de4312e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,7 @@
package google
import (
"context"
"fmt"
"log"
@ -8,7 +9,6 @@ import (
"github.com/hashicorp/terraform/helper/validation"
"cloud.google.com/go/bigtable"
"golang.org/x/net/context"
)
func resourceBigtableInstance() *schema.Resource {

View File

@ -1,12 +1,11 @@
package google
import (
"context"
"fmt"
"log"
"github.com/hashicorp/terraform/helper/schema"
"golang.org/x/net/context"
)
func resourceBigtableTable() *schema.Resource {

View File

@ -1,13 +1,13 @@
package google
import (
"context"
"fmt"
"log"
"strings"
"github.com/hashicorp/errwrap"
"github.com/hashicorp/terraform/helper/schema"
"golang.org/x/net/context"
"google.golang.org/api/googleapi"
"google.golang.org/api/serviceusage/v1beta1"
)