Skip to content

Commit

Permalink
change module name
Browse files Browse the repository at this point in the history
  • Loading branch information
mesuutt committed Jan 2, 2023
1 parent 2ff7ee9 commit d90d866
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"os"

"git-mirror/commands"
"gitmirror/commands"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions commands/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/urfave/cli/v2"

"git-mirror"
"git-mirror/git"
"gitmirror"
"gitmirror/git"
)

var AddCmd = &cli.Command{
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module git-mirror
module gitmirror

go 1.19

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

"git-mirror/git"
"gitmirror/git"
)

type Repo struct {
Expand Down

0 comments on commit d90d866

Please sign in to comment.