Skip to content

Commit

Permalink
fix: import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
fynxiu committed Oct 15, 2021
1 parent 65b32de commit 134dfd6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions internal/repo/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"path"
"strings"

"github.com/fyn.xiu/bgo/internal/fs"
"github.com/fyn.xiu/bgo/internal/gomod"
"github.com/fynxiu/bgo/internal/fs"
"github.com/fynxiu/bgo/internal/gomod"
)

// Repo is git repository manager.
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

"github.com/spf13/cobra"

"github.com/fyn.xiu/bgo/project"
"github.com/fyn.xiu/bgo/upgrade"
"github.com/fynxiu/bgo/project"
"github.com/fynxiu/bgo/upgrade"
)

const version = "0.0.1"
Expand Down
4 changes: 2 additions & 2 deletions project/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"github.com/AlecAivazis/survey/v2"
"github.com/fatih/color"

"github.com/fyn.xiu/bgo/internal/fs"
"github.com/fyn.xiu/bgo/internal/repo"
"github.com/fynxiu/bgo/internal/fs"
"github.com/fynxiu/bgo/internal/repo"
)

// Project is a project template.
Expand Down
4 changes: 2 additions & 2 deletions upgrade/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/fyn.xiu/bgo/internal/goexec"
"github.com/fynxiu/bgo/internal/goexec"
)

// CmdUpgrade represents the upgrade command.
Expand All @@ -19,7 +19,7 @@ var CmdUpgrade = &cobra.Command{
// Run upgrade the bgo tools.
func Run(_ *cobra.Command, _ []string) {
err := goexec.Install(
"github.com/fyn.xiu/bgo",
"github.com/fynxiu/bgo",
)
if err != nil {
fmt.Println(err)
Expand Down

0 comments on commit 134dfd6

Please sign in to comment.