File tree 5 files changed +4
-7
lines changed
5 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 4
4
"flag"
5
5
"fmt"
6
6
7
+ "code.cloudfoundry.org/cli/plugin"
7
8
"github.com/aegershman/cf-report-usage-plugin/internal/presentation"
8
9
"github.com/aegershman/cf-report-usage-plugin/internal/report"
9
- "github.com/cloudfoundry/cli/plugin"
10
10
log "github.com/sirupsen/logrus"
11
11
)
12
12
Original file line number Diff line number Diff line change @@ -3,10 +3,9 @@ module github.com/aegershman/cf-report-usage-plugin
3
3
go 1.15
4
4
5
5
require (
6
- code.cloudfoundry.org/cli v6.51.0+incompatible // indirect
6
+ code.cloudfoundry.org/cli v6.51.0+incompatible
7
7
github.com/Masterminds/semver v1.5.0 // indirect
8
8
github.com/cloudfoundry-community/go-cfclient v0.0.0-20200413172050-18981bf12b4b
9
- github.com/cloudfoundry/cli v6.53.0+incompatible
10
9
github.com/google/go-cmp v0.4.1 // indirect
11
10
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
12
11
github.com/kr/text v0.2.0 // indirect
Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA
13
13
github.com/client9/misspell v0.3.4 /go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw =
14
14
github.com/cloudfoundry-community/go-cfclient v0.0.0-20200413172050-18981bf12b4b h1:DxtGfGx/LJEIa9ZswJw097bz6CGQdaq2m9XFFuzomg8 =
15
15
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 =
18
16
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 h1:sDMmm+q/3+BukdIpxwO365v/Rbspp2Nt5XntgQRXq8Q =
19
17
github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0 /go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM =
20
18
github.com/creack/pty v1.1.9 /go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E =
Original file line number Diff line number Diff line change 1
1
package report
2
2
3
3
import (
4
+ "code.cloudfoundry.org/cli/plugin"
4
5
"github.com/aegershman/cf-report-usage-plugin/internal/v2client"
5
- "github.com/cloudfoundry/cli/plugin"
6
6
)
7
7
8
8
// Client orchestrates generation and aggregation of report data
Original file line number Diff line number Diff line change 5
5
"errors"
6
6
"strings"
7
7
8
+ "code.cloudfoundry.org/cli/plugin"
8
9
"github.com/cloudfoundry-community/go-cfclient"
9
- "github.com/cloudfoundry/cli/plugin"
10
10
)
11
11
12
12
// Client -
You can’t perform that action at this time.
0 commit comments