Skip to content

Commit

Permalink
fix: module using absolute Path
Browse files Browse the repository at this point in the history
  • Loading branch information
sincerefly committed Jan 17, 2024
1 parent 837172e commit 3df03bf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cmd/cmds_ip.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmd

import (
"easycmd/utils/random"
"easycmd/utils/requests"
"fmt"
"github.com/sincerefly/easycmd/utils/random"
"github.com/sincerefly/easycmd/utils/requests"
"github.com/spf13/cobra"
v "github.com/spf13/viper"
"log"
Expand Down
2 changes: 1 addition & 1 deletion cmd/cmds_v.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cmd

import (
"easycmd/common"
"github.com/sincerefly/easycmd/common"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmd

import (
"easycmd/common"
"fmt"
"github.com/sincerefly/easycmd/common"
"log"
"strings"

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 easycmd
module github.com/sincerefly/easycmd

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"easycmd/cmd"
"github.com/sincerefly/easycmd/cmd"
)

func main() {
Expand Down

0 comments on commit 3df03bf

Please sign in to comment.