fix goimports (#1372)

This commit is contained in:
Rémy Léone
2021-04-03 11:50:28 +08:00
committed by GitHub
parent 0036f0c32b
commit d1e538e2d4
10 changed files with 56 additions and 71 deletions
+5 -4
View File
@@ -18,14 +18,15 @@ package docker
import (
"bytes"
dockerlib "github.com/fsouza/go-dockerclient"
"github.com/kubernetes/kompose/pkg/utils/archive"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"io/ioutil"
"os"
"path"
"strings"
dockerlib "github.com/fsouza/go-dockerclient"
"github.com/kubernetes/kompose/pkg/utils/archive"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)
// Build will provide methods for interaction with API regarding building images
+2 -1
View File
@@ -17,8 +17,9 @@ limitations under the License.
package docker
import (
"github.com/fsouza/go-dockerclient"
"os"
docker "github.com/fsouza/go-dockerclient"
)
// Client connects to Docker client on host
+2 -1
View File
@@ -18,8 +18,9 @@ package docker
import (
"bytes"
dockerlib "github.com/fsouza/go-dockerclient"
"github.com/novln/docker-parser"
dockerparser "github.com/novln/docker-parser"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
)