Skip to content

Commit

Permalink
fix mudule name
Browse files Browse the repository at this point in the history
  • Loading branch information
M09Ic committed Jan 9, 2024
1 parent a30672d commit 42313c1
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/desertbit/grumble
module github.com/chainreactors/grumble

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion sample/full/cmd/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ package cmd
import (
"fmt"

"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion sample/full/cmd/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
package cmd

import (
"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
"github.com/fatih/color"
)

Expand Down
2 changes: 1 addition & 1 deletion sample/full/cmd/args.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"strings"
"time"

"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion sample/full/cmd/ask.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ package cmd
import (
"fmt"

"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
"gopkg.in/AlecAivazis/survey.v1"
)

Expand Down
2 changes: 1 addition & 1 deletion sample/full/cmd/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"strings"
"time"

"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion sample/full/cmd/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import (
"fmt"
"time"

"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion sample/full/cmd/prompt.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
package cmd

import (
"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
)

func init() {
Expand Down
4 changes: 2 additions & 2 deletions sample/full/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
package main

import (
"github.com/desertbit/grumble"
"github.com/desertbit/grumble/sample/full/cmd"
"github.com/chainreactors/grumble"
"github.com/chainreactors/grumble/sample/full/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion sample/group/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"errors"
"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
"strings"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion sample/readline/cmd/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"strings"
"time"

"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
)

var App = grumble.New(&grumble.Config{
Expand Down
2 changes: 1 addition & 1 deletion sample/readline/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
"github.com/desertbit/readline"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion sample/simple/cmd/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"strings"
"time"

"github.com/desertbit/grumble"
"github.com/chainreactors/grumble"
)

var App = grumble.New(&grumble.Config{
Expand Down
4 changes: 2 additions & 2 deletions sample/simple/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
package main

import (
"github.com/desertbit/grumble"
"github.com/desertbit/grumble/sample/simple/cmd"
"github.com/chainreactors/grumble"
"github.com/chainreactors/grumble/sample/simple/cmd"
)

func main() {
Expand Down

0 comments on commit 42313c1

Please sign in to comment.