Skip to content

Commit a76d30b

Browse files
committed
Move into the correct package after the move.
1 parent 916d79e commit a76d30b

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

cmd/services/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"log"
77
"os"
88

9-
"github.com/bigkevmcd/services/pkg/avancement"
10-
"github.com/bigkevmcd/services/pkg/git"
119
"github.com/mitchellh/go-homedir"
10+
"github.com/rhd-gitops-example/services/pkg/avancement"
11+
"github.com/rhd-gitops-example/services/pkg/git"
1212
"github.com/tcnksm/go-gitconfig"
1313
"github.com/urfave/cli/v2"
1414
)

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/bigkevmcd/services
1+
module github.com/rhd-gitops-example/services
22

33
go 1.13
44

@@ -12,5 +12,4 @@ require (
1212
github.com/urfave/cli/v2 v2.1.1
1313
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
1414
gopkg.in/src-d/go-git.v4 v4.13.1
15-
gopkg.in/yaml.v2 v2.2.2
1615
)

pkg/avancement/pull_request.go

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

6-
"github.com/bigkevmcd/services/pkg/util"
76
"github.com/jenkins-x/go-scm/scm"
7+
"github.com/rhd-gitops-example/services/pkg/util"
88
)
99

1010
// TODO: OptionFuncs for Base and Title?

pkg/avancement/service_manager.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77

88
"github.com/jenkins-x/go-scm/scm"
99

10-
"github.com/bigkevmcd/services/pkg/git"
11-
"github.com/bigkevmcd/services/pkg/util"
10+
"github.com/rhd-gitops-example/services/pkg/git"
11+
"github.com/rhd-gitops-example/services/pkg/util"
1212
)
1313

1414
type ServiceManager struct {

pkg/avancement/service_manager_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/jenkins-x/go-scm/scm"
77
fakescm "github.com/jenkins-x/go-scm/scm/driver/fake"
88

9-
"github.com/bigkevmcd/services/pkg/git/mock"
9+
"github.com/rhd-gitops-example/services/pkg/git/mock"
1010
)
1111

1212
const (

pkg/git/mock/mock_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package mock
22

3-
import "github.com/bigkevmcd/services/pkg/git"
3+
import "github.com/rhd-gitops-example/services/pkg/git"
44

55
var _ git.Cache = (*MockCache)(nil)

0 commit comments

Comments
 (0)