Fixing yet more gofmt errors with imports

This commit is contained in:
stack72 2015-12-21 09:54:24 +00:00
parent 27008ae898
commit 5fbec544d7
8 changed files with 15 additions and 7 deletions

View File

@ -4,9 +4,10 @@ import (
"bytes"
"fmt"
"regexp"
"github.com/hashicorp/terraform/helper/hashcode"
"github.com/hashicorp/terraform/helper/schema"
"regexp"
)
func resourceDockerContainer() *schema.Resource {

View File

@ -3,6 +3,7 @@ package postgresql
import (
"database/sql"
"fmt"
_ "github.com/lib/pq" //PostgreSQL db
)

View File

@ -2,6 +2,7 @@ package vcd
import (
"fmt"
"github.com/hashicorp/terraform/helper/schema"
)

View File

@ -2,10 +2,11 @@ package vcd
import (
"fmt"
"github.com/hashicorp/terraform/helper/schema"
types "github.com/hmrc/vmware-govcd/types/v56"
"log"
"strings"
"github.com/hashicorp/terraform/helper/schema"
types "github.com/hmrc/vmware-govcd/types/v56"
)
func resourceVcdFirewallRules() *schema.Resource {

View File

@ -5,10 +5,11 @@ import (
"bytes"
"fmt"
"strings"
"github.com/hashicorp/terraform/helper/hashcode"
"github.com/hashicorp/terraform/helper/schema"
types "github.com/hmrc/vmware-govcd/types/v56"
"strings"
)
func resourceVcdNetwork() *schema.Resource {

View File

@ -2,6 +2,7 @@ package vcd
import (
"fmt"
"github.com/hashicorp/terraform/helper/schema"
)

View File

@ -2,9 +2,10 @@ package vcd
import (
"fmt"
"log"
"github.com/hashicorp/terraform/helper/schema"
types "github.com/hmrc/vmware-govcd/types/v56"
"log"
)
func resourceVcdVApp() *schema.Resource {

View File

@ -2,11 +2,12 @@ package vcd
import (
"fmt"
"strconv"
"time"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
types "github.com/hmrc/vmware-govcd/types/v56"
"strconv"
"time"
)
func expandIPRange(configured []interface{}) types.IPRanges {