Run gofmt. (#1095)

This commit is contained in:
Nathan McKinley 2018-02-15 19:26:36 -08:00 committed by GitHub
parent 21564c36a1
commit 026e813287
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,8 @@ package google
import (
"fmt"
"google.golang.org/api/compute/v1"
"github.com/hashicorp/terraform/helper/schema"
"google.golang.org/api/compute/v1"
)
func dataSourceGoogleComputeSubnetwork() *schema.Resource {
@ -122,4 +122,4 @@ func flattenSecondaryRanges(secondaryRanges []*compute.SubnetworkSecondaryRange)
func createSubnetID(s *compute.Subnetwork) string {
return fmt.Sprintf("%s/%s", s.Region, s.Name)
}
}