Skip to content

Commit

Permalink
Update package name in go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
jsnjack committed Apr 17, 2023
1 parent 54921c8 commit eb8fe79
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ import (
"log"

http "github.com/bogdanfinn/fhttp"
tls_client "github.com/bogdanfinn/tls-client"
tls_client "github.com/jsnjack/tls-client"
)

func main() {
Expand Down Expand Up @@ -113,4 +113,4 @@ https://bogdanfinn.gitbook.io/open-source-oasis/
### Questions?

Join my discord support server for free: https://discord.gg/7Ej9eJvHqk
No Support in DMs!
No Support in DMs!
2 changes: 1 addition & 1 deletion cffi_dist/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"unsafe"

http "github.com/bogdanfinn/fhttp"
tls_client_cffi_src "github.com/bogdanfinn/tls-client/cffi_src"
"github.com/google/uuid"
tls_client_cffi_src "github.com/jsnjack/tls-client/cffi_src"
)

var unsafePointers = make(map[string]*C.char)
Expand Down
2 changes: 1 addition & 1 deletion cffi_src/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
http "github.com/bogdanfinn/fhttp"
"github.com/bogdanfinn/fhttp/cookiejar"
"github.com/bogdanfinn/fhttp/http2"
"github.com/bogdanfinn/tls-client"
tls "github.com/bogdanfinn/utls"
"github.com/google/uuid"
"github.com/jsnjack/tls-client"
)

var clientsLock = sync.Mutex{}
Expand Down
4 changes: 2 additions & 2 deletions example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (

http "github.com/bogdanfinn/fhttp"
"github.com/bogdanfinn/fhttp/http2"
tls_client "github.com/bogdanfinn/tls-client"
"github.com/bogdanfinn/tls-client/shared"
tls "github.com/bogdanfinn/utls"
tls_client "github.com/jsnjack/tls-client"
"github.com/jsnjack/tls-client/shared"
)

func main() {
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 github.com/bogdanfinn/tls-client
module github.com/jsnjack/tls-client

go 1.18

Expand Down
4 changes: 2 additions & 2 deletions tests/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"time"

http "github.com/bogdanfinn/fhttp"
tls_client "github.com/bogdanfinn/tls-client"
"github.com/bogdanfinn/tls-client/shared"
tls "github.com/bogdanfinn/utls"
tls_client "github.com/jsnjack/tls-client"
"github.com/jsnjack/tls-client/shared"
)

func TestClients(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion tests/client_test_utils.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package tests

import (
tls_client "github.com/bogdanfinn/tls-client"
tls "github.com/bogdanfinn/utls"
tls_client "github.com/jsnjack/tls-client"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion tests/cookie_jar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"testing"

http "github.com/bogdanfinn/fhttp"
tls_client "github.com/bogdanfinn/tls-client"
tls_client "github.com/jsnjack/tls-client"
"github.com/stretchr/testify/assert"
)

Expand Down
4 changes: 2 additions & 2 deletions tests/header_order_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"testing"

http "github.com/bogdanfinn/fhttp"
tls_client "github.com/bogdanfinn/tls-client"
"github.com/bogdanfinn/tls-client/shared"
tls_client "github.com/jsnjack/tls-client"
"github.com/jsnjack/tls-client/shared"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion tests/ja3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
utls "github.com/bogdanfinn/utls"
"github.com/stretchr/testify/assert"

tls_client "github.com/bogdanfinn/tls-client"
tls_client "github.com/jsnjack/tls-client"
)

func TestJA3(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions tests/random_extension_order_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"testing"

http "github.com/bogdanfinn/fhttp"
tls_client "github.com/bogdanfinn/tls-client"
"github.com/bogdanfinn/tls-client/shared"
tls_client "github.com/jsnjack/tls-client"
"github.com/jsnjack/tls-client/shared"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion tests/redirect_and_timeout_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

http "github.com/bogdanfinn/fhttp"
"github.com/bogdanfinn/fhttp/httptest"
tls_client "github.com/bogdanfinn/tls-client"
tls_client "github.com/jsnjack/tls-client"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit eb8fe79

Please sign in to comment.