Skip to content

Commit 9abc517

Browse files
authored
Consolidate import path to use cloudfoundry.org/cli path (#124)
1 parent 0295ddb commit 9abc517

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

cmd/reportusage/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"flag"
55
"fmt"
66

7+
"code.cloudfoundry.org/cli/plugin"
78
"github.com/aegershman/cf-report-usage-plugin/internal/presentation"
89
"github.com/aegershman/cf-report-usage-plugin/internal/report"
9-
"github.com/cloudfoundry/cli/plugin"
1010
log "github.com/sirupsen/logrus"
1111
)
1212

go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ module github.com/aegershman/cf-report-usage-plugin
33
go 1.15
44

55
require (
6-
code.cloudfoundry.org/cli v6.51.0+incompatible // indirect
6+
code.cloudfoundry.org/cli v6.51.0+incompatible
77
github.com/Masterminds/semver v1.5.0 // indirect
88
github.com/cloudfoundry-community/go-cfclient v0.0.0-20200413172050-18981bf12b4b
9-
github.com/cloudfoundry/cli v6.53.0+incompatible
109
github.com/google/go-cmp v0.4.1 // indirect
1110
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
1211
github.com/kr/text v0.2.0 // indirect

go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA
1313
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
1414
github.com/cloudfoundry-community/go-cfclient v0.0.0-20200413172050-18981bf12b4b h1:DxtGfGx/LJEIa9ZswJw097bz6CGQdaq2m9XFFuzomg8=
1515
github.com/cloudfoundry-community/go-cfclient v0.0.0-20200413172050-18981bf12b4b/go.mod h1:RtIewdO+K/czvxvIFCMbPyx7jdxSLL1RZ+DA/Vk8Lwg=
16-
github.com/cloudfoundry/cli v6.53.0+incompatible h1:8oj3QwuibmLhhqXq+O9U/xMZEDl6zT+YIiTFSbEywUE=
17-
github.com/cloudfoundry/cli v6.53.0+incompatible/go.mod h1:uUVSLzSuwWNhis5+tY5XRUp66kLbHhBktg8b3ZfcJHI=
1816
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 h1:sDMmm+q/3+BukdIpxwO365v/Rbspp2Nt5XntgQRXq8Q=
1917
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM=
2018
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=

internal/report/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package report
22

33
import (
4+
"code.cloudfoundry.org/cli/plugin"
45
"github.com/aegershman/cf-report-usage-plugin/internal/v2client"
5-
"github.com/cloudfoundry/cli/plugin"
66
)
77

88
// Client orchestrates generation and aggregation of report data

internal/v2client/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"errors"
66
"strings"
77

8+
"code.cloudfoundry.org/cli/plugin"
89
"github.com/cloudfoundry-community/go-cfclient"
9-
"github.com/cloudfoundry/cli/plugin"
1010
)
1111

1212
// Client -

0 commit comments

Comments
 (0)