diff options
Diffstat (limited to 'commands/user')
-rw-r--r-- | commands/user/user.go | 10 | ||||
-rw-r--r-- | commands/user/user_adopt.go | 4 | ||||
-rw-r--r-- | commands/user/user_new.go | 4 | ||||
-rw-r--r-- | commands/user/user_new_test.go | 2 | ||||
-rw-r--r-- | commands/user/user_show.go | 6 |
5 files changed, 13 insertions, 13 deletions
diff --git a/commands/user/user.go b/commands/user/user.go index de5c1ccd..99833ba9 100644 --- a/commands/user/user.go +++ b/commands/user/user.go @@ -5,11 +5,11 @@ import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/cache" - "github.com/MichaelMure/git-bug/commands/cmdjson" - "github.com/MichaelMure/git-bug/commands/completion" - "github.com/MichaelMure/git-bug/commands/execenv" - "github.com/MichaelMure/git-bug/util/colors" + "github.com/git-bug/git-bug/cache" + "github.com/git-bug/git-bug/commands/cmdjson" + "github.com/git-bug/git-bug/commands/completion" + "github.com/git-bug/git-bug/commands/execenv" + "github.com/git-bug/git-bug/util/colors" ) type userOptions struct { diff --git a/commands/user/user_adopt.go b/commands/user/user_adopt.go index 47f0f04e..a5fe68c5 100644 --- a/commands/user/user_adopt.go +++ b/commands/user/user_adopt.go @@ -3,8 +3,8 @@ package usercmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/completion" - "github.com/MichaelMure/git-bug/commands/execenv" + "github.com/git-bug/git-bug/commands/completion" + "github.com/git-bug/git-bug/commands/execenv" ) func newUserAdoptCommand(env *execenv.Env) *cobra.Command { diff --git a/commands/user/user_new.go b/commands/user/user_new.go index ba4198f8..9cc04fa7 100644 --- a/commands/user/user_new.go +++ b/commands/user/user_new.go @@ -3,8 +3,8 @@ package usercmd import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/execenv" - "github.com/MichaelMure/git-bug/commands/input" + "github.com/git-bug/git-bug/commands/execenv" + "github.com/git-bug/git-bug/commands/input" ) type userNewOptions struct { diff --git a/commands/user/user_new_test.go b/commands/user/user_new_test.go index 619e5de6..865f76a7 100644 --- a/commands/user/user_new_test.go +++ b/commands/user/user_new_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/MichaelMure/git-bug/commands/bug/testenv" + "github.com/git-bug/git-bug/commands/bug/testenv" ) func TestUserNewCommand(t *testing.T) { diff --git a/commands/user/user_show.go b/commands/user/user_show.go index 049eee93..0fbed190 100644 --- a/commands/user/user_show.go +++ b/commands/user/user_show.go @@ -7,9 +7,9 @@ import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/cache" - "github.com/MichaelMure/git-bug/commands/completion" - "github.com/MichaelMure/git-bug/commands/execenv" + "github.com/git-bug/git-bug/cache" + "github.com/git-bug/git-bug/commands/completion" + "github.com/git-bug/git-bug/commands/execenv" ) type userShowOptions struct { |