Skip to content

Commit eb60904

Browse files
committed
fix: update unit tests and correct module import path
1 parent a30d7ac commit eb60904

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

cmd/cli/bestdns.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cli
22

33
import (
4-
"github.com/403unlocker/403Unlocker-cli/internal/dns"
4+
"github.com/403unlocker/403unlocker-cli/internal/dns"
55
"fmt"
66

77
"github.com/spf13/cobra"

cmd/cli/check.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cli
22

33
import (
4-
"github.com/403unlocker/403Unlocker-cli/internal/check"
4+
"github.com/403unlocker/403unlocker-cli/internal/check"
55

66
"github.com/spf13/cobra"
77
)

cmd/cli/fastdocker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cli
22

33
import (
4-
"github.com/403unlocker/403Unlocker-cli/internal/docker"
4+
"github.com/403unlocker/403unlocker-cli/internal/docker"
55

66
"github.com/spf13/cobra"
77
)

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/403unlocker/403Unlocker-cli/cmd/cli"
4+
"github.com/403unlocker/403unlocker-cli/cmd/cli"
55
)
66

77
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module 403unlocker-cli
1+
module github.com/403unlocker/403unlocker-cli
22

33
go 1.24.1
44

internal/check/function.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package check
22

33
import (
4-
"github.com/403unlocker/403Unlocker-cli/internal/common"
4+
"github.com/403unlocker/403unlocker-cli/internal/common"
55
"fmt"
66
"net/http"
77
"net/url"

internal/dns/function.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"sync"
1212
"time"
1313

14-
"github.com/403unlocker/403Unlocker-cli/internal/common"
14+
"github.com/403unlocker/403unlocker-cli/internal/common"
1515

1616
"github.com/cavaliergopher/grab/v3"
1717
)

internal/docker/function.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"sync/atomic"
1414
"time"
1515

16-
"github.com/403unlocker/403Unlocker-cli/internal/common"
16+
"github.com/403unlocker/403unlocker-cli/internal/common"
1717

1818
"github.com/distribution/reference"
1919
"github.com/google/go-containerregistry/pkg/authn"

0 commit comments

Comments
 (0)