Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhaillav committed Nov 6, 2023
1 parent b08a1dd commit ff33cf3
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 20 deletions.
2 changes: 1 addition & 1 deletion conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"context"
"fmt"
"github.com/df-mc/atomic"
"github.com/sandertv/go-raknet/internal/message"
"github.com/OpenFarLands/go-raknet/internal/message"
"net"
"sync"
"time"
Expand Down
2 changes: 1 addition & 1 deletion dial.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sync/atomic"
"time"

"github.com/sandertv/go-raknet/internal/message"
"github.com/OpenFarLands/go-raknet/internal/message"
)

// UpstreamDialer is an interface for anything compatible with net.Dialer.
Expand Down
2 changes: 1 addition & 1 deletion dial_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"github.com/sandertv/go-raknet"
"github.com/OpenFarLands/go-raknet"
)

func TestPing(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion example_dial_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package raknet_test

import (
"fmt"
"github.com/sandertv/go-raknet"
"github.com/OpenFarLands/go-raknet"
)

func ExamplePing() {
Expand Down
2 changes: 1 addition & 1 deletion example_listen_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package raknet_test

import (
"github.com/sandertv/go-raknet"
"github.com/OpenFarLands/go-raknet"
)

func ExampleListen() {
Expand Down
9 changes: 3 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
module github.com/sandertv/go-raknet
module github.com/OpenFarLands/go-raknet

go 1.18
go 1.21.0

Check failure on line 3 in go.mod

View workflow job for this annotation

GitHub Actions / Build

invalid go version '1.21.0': must match format 1.23

Check failure on line 3 in go.mod

View workflow job for this annotation

GitHub Actions / Build

invalid go version '1.21.0': must match format 1.23

require (
github.com/df-mc/atomic v1.10.0
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1
)
require github.com/df-mc/atomic v1.10.0
11 changes: 4 additions & 7 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/df-mc/atomic v1.10.0 h1:0ZuxBKwR/hxcFGorKiHIp+hY7hgY+XBTzhCYD2NqSEg=
github.com/df-mc/atomic v1.10.0/go.mod h1:Gw9rf+rPIbydMjA329Jn4yjd/O2c/qusw3iNp4tFGSc=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1 h1:4qWs8cYYH6PoEFy4dfhDFgoMGkwAcETd+MmPdCPMzUc=
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
2 changes: 1 addition & 1 deletion listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"fmt"
"github.com/df-mc/atomic"
"github.com/sandertv/go-raknet/internal/message"
"github.com/OpenFarLands/go-raknet/internal/message"
"log"
"math"
"math/rand"
Expand Down
2 changes: 1 addition & 1 deletion listener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package raknet_test

import (
"fmt"
"github.com/sandertv/go-raknet"
"github.com/OpenFarLands/go-raknet"
"testing"
"time"
)
Expand Down

0 comments on commit ff33cf3

Please sign in to comment.