fix imports

`find . -type f -name '*.go' -not -path "./vendor/*" -exec goimports -w {} \;`
This commit is contained in:
Matthew Hooker 2018-01-22 15:32:33 -08:00
parent a831d522be
commit 7a189a83a1
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
265 changed files with 340 additions and 141 deletions

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"time" "time"
@ -9,7 +10,6 @@ import (
"github.com/denverdino/aliyungo/ecs" "github.com/denverdino/aliyungo/ecs"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"time"
) )
type stepAttachKeyPar struct { type stepAttachKeyPar struct {

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/common" "github.com/denverdino/aliyungo/common"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/common" "github.com/denverdino/aliyungo/common"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"os" "os"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/ecs" "github.com/denverdino/aliyungo/ecs"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"time" "time"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"time" "time"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"time" "time"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/common" "github.com/denverdino/aliyungo/common"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"log" "log"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"log" "log"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/ecs" "github.com/denverdino/aliyungo/ecs"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/common" "github.com/denverdino/aliyungo/common"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/common" "github.com/denverdino/aliyungo/common"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/ecs" "github.com/denverdino/aliyungo/ecs"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/common" "github.com/denverdino/aliyungo/common"

View File

@ -1,6 +1,7 @@
package ecs package ecs
import ( import (
"context"
"fmt" "fmt"
"github.com/denverdino/aliyungo/ecs" "github.com/denverdino/aliyungo/ecs"

View File

@ -1,6 +1,7 @@
package chroot package chroot
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"strings" "strings"

View File

@ -1,6 +1,7 @@
package chroot package chroot
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/service/ec2" "github.com/aws/aws-sdk-go/service/ec2"

View File

@ -1,6 +1,7 @@
package chroot package chroot
import ( import (
"context"
"log" "log"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"

View File

@ -2,14 +2,13 @@ package chroot
import ( import (
"bytes" "bytes"
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
"log" "log"
"path/filepath" "path/filepath"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
// StepCopyFiles copies some files from the host into the chroot environment. // StepCopyFiles copies some files from the host into the chroot environment.

View File

@ -1,6 +1,7 @@
package chroot package chroot
import ( import (
"context"
"fmt" "fmt"
"log" "log"

View File

@ -1,10 +1,12 @@
package chroot package chroot
import ( import (
"context"
"fmt" "fmt"
"log"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"log"
) )
// StepEarlyCleanup performs some of the cleanup steps early in order to // StepEarlyCleanup performs some of the cleanup steps early in order to

View File

@ -1,10 +1,12 @@
package chroot package chroot
import ( import (
"context"
"fmt" "fmt"
"log"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"log"
) )
// StepEarlyUnflock unlocks the flock. // StepEarlyUnflock unlocks the flock.

View File

@ -1,15 +1,14 @@
package chroot package chroot
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
"log" "log"
"os" "os"
"path/filepath" "path/filepath"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
// StepFlock provisions the instance within a chroot. // StepFlock provisions the instance within a chroot.

View File

@ -1,6 +1,7 @@
package chroot package chroot
import ( import (
"context"
"fmt" "fmt"
"log" "log"

View File

@ -2,6 +2,7 @@ package chroot
import ( import (
"bytes" "bytes"
"context"
"fmt" "fmt"
"log" "log"
"os" "os"

View File

@ -2,15 +2,14 @@ package chroot
import ( import (
"bytes" "bytes"
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
"os" "os"
"os/exec" "os/exec"
"syscall" "syscall"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
// StepMountExtra mounts the attached device. // StepMountExtra mounts the attached device.

View File

@ -1,6 +1,8 @@
package chroot package chroot
import ( import (
"context"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
) )

View File

@ -1,6 +1,8 @@
package chroot package chroot
import ( import (
"context"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
) )

View File

@ -1,6 +1,7 @@
package chroot package chroot
import ( import (
"context"
"fmt" "fmt"
"log" "log"
"os" "os"

View File

@ -1,6 +1,7 @@
package chroot package chroot
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package chroot package chroot
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"time" "time"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"sync" "sync"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"log" "log"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"crypto/rsa" "crypto/rsa"
"crypto/x509" "crypto/x509"
"encoding/base64" "encoding/base64"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"os" "os"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"encoding/base64" "encoding/base64"
"fmt" "fmt"
"io/ioutil" "io/ioutil"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"log" "log"
"time" "time"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"log" "log"
"sort" "sort"

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/aws/awserr"

View File

@ -1,6 +1,7 @@
package ebs package ebs
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package ebs package ebs
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/service/ec2" "github.com/aws/aws-sdk-go/service/ec2"

View File

@ -1,6 +1,7 @@
package ebssurrogate package ebssurrogate
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package ebssurrogate package ebssurrogate
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"time" "time"

View File

@ -1,6 +1,7 @@
package ebsvolume package ebsvolume
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/service/ec2" "github.com/aws/aws-sdk-go/service/ec2"

View File

@ -1,6 +1,7 @@
package instance package instance
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/service/ec2" "github.com/aws/aws-sdk-go/service/ec2"

View File

@ -1,6 +1,7 @@
package instance package instance
import ( import (
"context"
"fmt" "fmt"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"

View File

@ -1,6 +1,7 @@
package instance package instance
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"

View File

@ -1,10 +1,12 @@
package instance package instance
import ( import (
"context"
"fmt" "fmt"
"os"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"os"
) )
type StepUploadX509Cert struct{} type StepUploadX509Cert struct{}

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"fmt" "fmt"
"github.com/Azure/azure-sdk-for-go/arm/compute" "github.com/Azure/azure-sdk-for-go/arm/compute"

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"net/url" "net/url"

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"fmt" "fmt"
"github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest"

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"net/url" "net/url"

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"fmt" "fmt"
"time" "time"

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/builder/azure/common/constants" "github.com/hashicorp/packer/builder/azure/common/constants"

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"fmt" "fmt"
"github.com/Azure/azure-sdk-for-go/arm/compute" "github.com/Azure/azure-sdk-for-go/arm/compute"

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/builder/azure/common" "github.com/hashicorp/packer/builder/azure/common"

View File

@ -1,6 +1,8 @@
package arm package arm
import ( import (
"context"
"github.com/hashicorp/packer/builder/azure/common/constants" "github.com/hashicorp/packer/builder/azure/common/constants"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"

View File

@ -7,7 +7,6 @@ import (
"github.com/hashicorp/packer/builder/azure/common" "github.com/hashicorp/packer/builder/azure/common"
"github.com/hashicorp/packer/builder/azure/common/constants" "github.com/hashicorp/packer/builder/azure/common/constants"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"testing"
) )
func TestProcessStepResultShouldContinueForNonErrors(t *testing.T) { func TestProcessStepResultShouldContinueForNonErrors(t *testing.T) {

View File

@ -1,6 +1,7 @@
package arm package arm
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/builder/azure/common/constants" "github.com/hashicorp/packer/builder/azure/common/constants"

View File

@ -1,6 +1,7 @@
package lin package lin
import ( import (
"context"
"crypto/rand" "crypto/rand"
"crypto/rsa" "crypto/rsa"
"crypto/sha1" "crypto/sha1"

View File

@ -2,10 +2,12 @@ package lin
import ( import (
"bytes" "bytes"
"context"
"fmt" "fmt"
"log"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"log"
) )
type StepGeneralizeOS struct { type StepGeneralizeOS struct {

View File

@ -1,6 +1,7 @@
package cloudstack package cloudstack
import ( import (
"context"
"fmt" "fmt"
"math/rand" "math/rand"
"strings" "strings"

View File

@ -1,6 +1,7 @@
package cloudstack package cloudstack
import ( import (
"context"
"encoding/base64" "encoding/base64"
"errors" "errors"
"fmt" "fmt"

View File

@ -1,6 +1,7 @@
package cloudstack package cloudstack
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/common/uuid" "github.com/hashicorp/packer/common/uuid"

View File

@ -1,6 +1,7 @@
package cloudstack package cloudstack
import ( import (
"context"
"fmt" "fmt"
"time" "time"

View File

@ -1,6 +1,7 @@
package cloudstack package cloudstack
import ( import (
"context"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"os" "os"

View File

@ -1,6 +1,7 @@
package cloudstack package cloudstack
import ( import (
"context"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"regexp" "regexp"

View File

@ -1,6 +1,7 @@
package cloudstack package cloudstack
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"

View File

@ -1,7 +1,9 @@
package docker package docker
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
) )

View File

@ -2,10 +2,9 @@ package docker
import ( import (
"errors" "errors"
"github.com/hashicorp/packer/helper/multistep"
"testing" "testing"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
) )
func testStepCommitState(t *testing.T) multistep.StateBag { func testStepCommitState(t *testing.T) multistep.StateBag {

View File

@ -1,12 +1,12 @@
package docker package docker
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep"
"os/exec" "os/exec"
"strings" "strings"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
) )
type StepConnectDocker struct{} type StepConnectDocker struct{}

View File

@ -1,6 +1,7 @@
package docker package docker
import ( import (
"context"
"fmt" "fmt"
"os" "os"
"path/filepath" "path/filepath"

View File

@ -3,12 +3,11 @@ package docker
import ( import (
"bytes" "bytes"
"errors" "errors"
"github.com/hashicorp/packer/helper/multistep"
"io/ioutil" "io/ioutil"
"os" "os"
"testing" "testing"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
) )
func testStepExportState(t *testing.T) multistep.StateBag { func testStepExportState(t *testing.T) multistep.StateBag {

View File

@ -1,6 +1,7 @@
package docker package docker
import ( import (
"context"
"fmt" "fmt"
"log" "log"

View File

@ -2,10 +2,9 @@ package docker
import ( import (
"errors" "errors"
"github.com/hashicorp/packer/helper/multistep"
"testing" "testing"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
) )
func TestStepPull_impl(t *testing.T) { func TestStepPull_impl(t *testing.T) {

View File

@ -1,7 +1,9 @@
package docker package docker
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
) )

View File

@ -1,11 +1,11 @@
package docker package docker
import ( import (
"context"
"errors" "errors"
"github.com/hashicorp/packer/helper/multistep"
"testing" "testing"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
) )
func testStepRunState(t *testing.T) multistep.StateBag { func testStepRunState(t *testing.T) multistep.StateBag {

View File

@ -1,14 +1,13 @@
package docker package docker
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer"
"io/ioutil" "io/ioutil"
"os" "os"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
// StepTempDir creates a temporary directory that we use in order to // StepTempDir creates a temporary directory that we use in order to

View File

@ -2,9 +2,10 @@ package docker
import ( import (
"bytes" "bytes"
"testing"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"testing"
) )
func testState(t *testing.T) multistep.StateBag { func testState(t *testing.T) multistep.StateBag {

View File

@ -1,6 +1,7 @@
package googlecompute package googlecompute
import ( import (
"context"
"fmt" "fmt"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"

View File

@ -1,10 +1,9 @@
package googlecompute package googlecompute
import ( import (
"github.com/hashicorp/packer/helper/multistep"
"testing" "testing"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
) )
func TestStepCheckExistingImage_impl(t *testing.T) { func TestStepCheckExistingImage_impl(t *testing.T) {

View File

@ -1,6 +1,7 @@
package googlecompute package googlecompute
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"time" "time"

View File

@ -1,6 +1,7 @@
package googlecompute package googlecompute
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"io/ioutil" "io/ioutil"

View File

@ -1,6 +1,7 @@
package googlecompute package googlecompute
import ( import (
"context"
"crypto/rand" "crypto/rand"
"crypto/rsa" "crypto/rsa"
"crypto/x509" "crypto/x509"

View File

@ -1,6 +1,7 @@
package googlecompute package googlecompute
import ( import (
"context"
"crypto/rand" "crypto/rand"
"crypto/rsa" "crypto/rsa"
"crypto/x509" "crypto/x509"

View File

@ -1,6 +1,7 @@
package googlecompute package googlecompute
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"time" "time"

View File

@ -2,11 +2,10 @@ package googlecompute
import ( import (
"errors" "errors"
"github.com/hashicorp/packer/helper/multistep"
"testing" "testing"
"time" "time"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
) )
func TestStepInstanceInfo_impl(t *testing.T) { func TestStepInstanceInfo_impl(t *testing.T) {

View File

@ -1,6 +1,7 @@
package googlecompute package googlecompute
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"
"time" "time"

View File

@ -1,10 +1,9 @@
package googlecompute package googlecompute
import ( import (
"github.com/hashicorp/packer/helper/multistep"
"testing" "testing"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
) )
func TestStepTeardownInstance_impl(t *testing.T) { func TestStepTeardownInstance_impl(t *testing.T) {

View File

@ -1,6 +1,7 @@
package googlecompute package googlecompute
import ( import (
"context"
"errors" "errors"
"fmt" "fmt"

View File

@ -1,6 +1,8 @@
package googlecompute package googlecompute
import ( import (
"testing"
"github.com/hashicorp/packer/helper/multistep" "github.com/hashicorp/packer/helper/multistep"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )

View File

@ -1,6 +1,7 @@
package common package common
import ( import (
"context"
"fmt" "fmt"
"log" "log"
"path/filepath" "path/filepath"

Some files were not shown because too many files have changed in this diff Show More