Skip to content

Commit 8a9268e

Browse files
committed
Add vendor
1 parent e0f20a8 commit 8a9268e

File tree

778 files changed

+337339
-45
lines changed

Some content is hidden

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

778 files changed

+337339
-45
lines changed

cli/cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/fatih/color"
99
"github.com/rodaine/table"
10-
"github.com/taxibeat/ergo"
10+
"github.com/thebeatapp/ergo"
1111
)
1212

1313
var (

commands/deploy.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"context"
55

66
"github.com/spf13/cobra"
7-
"github.com/taxibeat/ergo/cli"
8-
"github.com/taxibeat/ergo/github"
9-
"github.com/taxibeat/ergo/release"
7+
"github.com/thebeatapp/ergo/cli"
8+
"github.com/thebeatapp/ergo/github"
9+
"github.com/thebeatapp/ergo/release"
1010
)
1111

1212
// defineDeployCommand defines the deploy command.

commands/draft.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ package commands
33
import (
44
"context"
55

6-
"github.com/taxibeat/ergo/release"
6+
"github.com/thebeatapp/ergo/release"
77

8-
"github.com/taxibeat/ergo/cli"
8+
"github.com/thebeatapp/ergo/cli"
99

1010
"github.com/spf13/cobra"
11-
"github.com/taxibeat/ergo/github"
11+
"github.com/thebeatapp/ergo/github"
1212
)
1313

1414
// defineDraftCommand defines the draft command.

commands/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"os"
66

77
"github.com/spf13/cobra"
8-
"github.com/taxibeat/ergo/config"
9-
"github.com/taxibeat/ergo/config/viper"
8+
"github.com/thebeatapp/ergo/config"
9+
"github.com/thebeatapp/ergo/config/viper"
1010
)
1111

1212
var (

commands/status.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"context"
55
"strconv"
66

7-
"github.com/taxibeat/ergo/github"
7+
"github.com/thebeatapp/ergo/github"
88

99
"github.com/spf13/cobra"
10-
"github.com/taxibeat/ergo"
11-
"github.com/taxibeat/ergo/cli"
10+
"github.com/thebeatapp/ergo"
11+
"github.com/thebeatapp/ergo/cli"
1212
)
1313

1414
// defineStatusCommand defines the status command.

commands/tag.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/taxibeat/ergo/github"
8-
"github.com/taxibeat/ergo/release"
7+
"github.com/thebeatapp/ergo/github"
8+
"github.com/thebeatapp/ergo/release"
99

1010
"github.com/spf13/cobra"
11-
"github.com/taxibeat/ergo/cli"
11+
"github.com/thebeatapp/ergo/cli"
1212
)
1313

1414
// defineTagCommand defines the tag command.

commands/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package commands
22

33
import (
44
"github.com/spf13/cobra"
5-
"github.com/taxibeat/ergo/cli"
5+
"github.com/thebeatapp/ergo/cli"
66
)
77

88
// defineVersionCommand defines the version command.

config/viper/viper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"github.com/mitchellh/go-homedir"
99
"github.com/spf13/viper"
10-
"github.com/taxibeat/ergo/config"
10+
"github.com/thebeatapp/ergo/config"
1111
)
1212

1313
// Options struct.

config/viper/viper_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"testing"
66

77
"github.com/spf13/viper"
8-
viper2 "github.com/taxibeat/ergo/config/viper"
8+
viper2 "github.com/thebeatapp/ergo/config/viper"
99
)
1010

1111
func TestGetConfigShouldNotReturnError(t *testing.T) {

github/github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"net/http"
88

99
"github.com/google/go-github/github"
10-
"github.com/taxibeat/ergo"
10+
"github.com/thebeatapp/ergo"
1111
"golang.org/x/oauth2"
1212
)
1313

0 commit comments

Comments
 (0)