backend/remote-state/gcloud: Sort standard library imports before other imports.
This commit is contained in:
parent
52ac764036
commit
e54d36b489
|
@ -1,9 +1,10 @@
|
|||
package gcloud
|
||||
|
||||
import (
|
||||
"cloud.google.com/go/storage"
|
||||
"context"
|
||||
"fmt"
|
||||
|
||||
"cloud.google.com/go/storage"
|
||||
"github.com/hashicorp/terraform/backend"
|
||||
"github.com/hashicorp/terraform/helper/pathorcontents"
|
||||
"github.com/hashicorp/terraform/helper/schema"
|
||||
|
|
|
@ -1,17 +1,18 @@
|
|||
package gcloud
|
||||
|
||||
import (
|
||||
"cloud.google.com/go/storage"
|
||||
"errors"
|
||||
"fmt"
|
||||
"regexp"
|
||||
"sort"
|
||||
"strings"
|
||||
|
||||
"cloud.google.com/go/storage"
|
||||
"github.com/hashicorp/terraform/backend"
|
||||
"github.com/hashicorp/terraform/state"
|
||||
"github.com/hashicorp/terraform/state/remote"
|
||||
"github.com/hashicorp/terraform/terraform"
|
||||
"google.golang.org/api/iterator"
|
||||
"regexp"
|
||||
"sort"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func (b *Backend) States() ([]string, error) {
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
package gcloud
|
||||
|
||||
import (
|
||||
"cloud.google.com/go/storage"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
|
||||
"cloud.google.com/go/storage"
|
||||
uuid "github.com/hashicorp/go-uuid"
|
||||
"github.com/hashicorp/terraform/state"
|
||||
"github.com/hashicorp/terraform/state/remote"
|
||||
"golang.org/x/net/context"
|
||||
"io/ioutil"
|
||||
)
|
||||
|
||||
type RemoteClient struct {
|
||||
|
|
Loading…
Reference in New Issue