1
0
mirror of https://github.com/rancher/cli.git synced 2026-02-05 09:48:36 +01:00

goimports changes

This commit is contained in:
Dan Ramich
2019-08-26 14:49:17 -07:00
committed by Craig Jellick
parent 2bbc82799b
commit 3f750fb24b
4 changed files with 5 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ package cmd
import (
"testing"
"github.com/rancher/types/client/management/v3"
client "github.com/rancher/types/client/management/v3"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package cmd
import (
"fmt"
"github.com/rancher/cli/rancher_prompt"
rancherprompt "github.com/rancher/cli/rancher_prompt"
"github.com/c-bata/go-prompt"
"github.com/urfave/cli"

View File

@@ -4,7 +4,7 @@ import (
"io/ioutil"
"github.com/rancher/cli/cliclient"
"github.com/rancher/types/client/management/v3"
client "github.com/rancher/types/client/management/v3"
"github.com/urfave/cli"
)

View File

@@ -1,8 +1,9 @@
package main
import (
"gopkg.in/check.v1"
"testing"
"gopkg.in/check.v1"
)
// Hook up gocheck into the "go test" runner.