Skip to content

Commit 210dbf0

Browse files
committed
Rewrite imports for godep
1 parent 3bfc2e5 commit 210dbf0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+75
-75
lines changed

cmd/scw/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"os"
1313

1414
"github.com/scaleway/scaleway-cli/pkg/cli"
15-
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
15+
"github.com/Sirupsen/logrus"
1616
)
1717

1818
func main() {

pkg/api/api.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ import (
2424
"text/template"
2525
"time"
2626

27-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
28-
"github.com/scaleway/scaleway-cli/vendor/github.com/moul/anonuuid"
29-
"github.com/scaleway/scaleway-cli/vendor/github.com/moul/http2curl"
27+
log "github.com/Sirupsen/logrus"
28+
"github.com/moul/anonuuid"
29+
"github.com/moul/http2curl"
3030
)
3131

3232
// Default values

pkg/api/api_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package api
33
import (
44
"testing"
55

6-
. "github.com/scaleway/scaleway-cli/vendor/github.com/smartystreets/goconvey/convey"
6+
. "github.com/smartystreets/goconvey/convey"
77
)
88

99
func TestNewScalewayAPI(t *testing.T) {

pkg/api/cache.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import (
1414
"strings"
1515
"sync"
1616

17-
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
18-
"github.com/scaleway/scaleway-cli/vendor/github.com/moul/anonuuid"
19-
"github.com/scaleway/scaleway-cli/vendor/github.com/renstrom/fuzzysearch/fuzzy"
17+
"github.com/Sirupsen/logrus"
18+
"github.com/moul/anonuuid"
19+
"github.com/renstrom/fuzzysearch/fuzzy"
2020
)
2121

2222
// ScalewayCache is used not to query the API to resolve full identifiers

pkg/api/helpers.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ import (
1313
"time"
1414

1515
"github.com/scaleway/scaleway-cli/pkg/utils"
16-
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
17-
log "github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
18-
"github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/namesgenerator"
19-
"github.com/scaleway/scaleway-cli/vendor/github.com/dustin/go-humanize"
20-
"github.com/scaleway/scaleway-cli/vendor/github.com/moul/anonuuid"
16+
"github.com/Sirupsen/logrus"
17+
log "github.com/Sirupsen/logrus"
18+
"github.com/docker/docker/pkg/namesgenerator"
19+
"github.com/dustin/go-humanize"
20+
"github.com/moul/anonuuid"
2121
)
2222

2323
// ScalewayResolvedIdentifier represents a list of matching identifier for a specifier pattern

pkg/cli/cmd_help.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package cli
77
import (
88
"text/template"
99

10-
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
10+
"github.com/Sirupsen/logrus"
1111
)
1212

1313
// CmdHelp is the 'scw help' command

pkg/cli/cmd_images.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99

1010
"github.com/scaleway/scaleway-cli/pkg/commands"
11-
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
11+
"github.com/Sirupsen/logrus"
1212
)
1313

1414
var cmdImages = &Command{

pkg/cli/cmd_ps.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99

1010
"github.com/scaleway/scaleway-cli/pkg/commands"
11-
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
11+
"github.com/Sirupsen/logrus"
1212
)
1313

1414
var cmdPs = &Command{

pkg/cli/command.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"strings"
1414
"text/template"
1515

16-
"github.com/scaleway/scaleway-cli/vendor/github.com/Sirupsen/logrus"
17-
flag "github.com/scaleway/scaleway-cli/vendor/github.com/docker/docker/pkg/mflag"
16+
"github.com/Sirupsen/logrus"
17+
flag "github.com/docker/docker/pkg/mflag"
1818

1919
"github.com/scaleway/scaleway-cli/pkg/api"
2020
"github.com/scaleway/scaleway-cli/pkg/commands"

pkg/cli/command_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cli
33
import (
44
"testing"
55

6-
. "github.com/scaleway/scaleway-cli/vendor/github.com/smartystreets/goconvey/convey"
6+
. "github.com/smartystreets/goconvey/convey"
77
)
88

99
func TestCommand_Name(t *testing.T) {

0 commit comments

Comments
 (0)