Skip to content

Commit

Permalink
gorond
Browse files Browse the repository at this point in the history
  • Loading branch information
anacrolix committed Mar 1, 2023
1 parent d3b3d2d commit 31bbd43
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import (
"github.com/anacrolix/missinggo/v2/bitmap"
"github.com/anacrolix/missinggo/v2/pproffd"
"github.com/anacrolix/sync"
"github.com/anacrolix/torrent/types/infohash"
"github.com/davecgh/go-spew/spew"
"github.com/dustin/go-humanize"
gbtree "github.com/google/btree"
Expand All @@ -47,6 +46,7 @@ import (
request_strategy "github.com/anacrolix/torrent/request-strategy"
"github.com/anacrolix/torrent/storage"
"github.com/anacrolix/torrent/tracker"
"github.com/anacrolix/torrent/types/infohash"
"github.com/anacrolix/torrent/webtorrent"
)

Expand Down
2 changes: 1 addition & 1 deletion tracker/http/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import (
"github.com/anacrolix/dht/v2/krpc"
"github.com/anacrolix/generics"
"github.com/anacrolix/log"
trackerServer "github.com/anacrolix/torrent/tracker/server"

"github.com/anacrolix/torrent/bencode"
"github.com/anacrolix/torrent/tracker"
httpTracker "github.com/anacrolix/torrent/tracker/http"
trackerServer "github.com/anacrolix/torrent/tracker/server"
)

type Handler struct {
Expand Down
2 changes: 1 addition & 1 deletion tracker/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import (

"github.com/anacrolix/generics"
"github.com/anacrolix/log"
"github.com/anacrolix/torrent/tracker"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/codes"
"go.opentelemetry.io/otel/trace"

"github.com/anacrolix/torrent/tracker"
"github.com/anacrolix/torrent/tracker/udp"
)

Expand Down
2 changes: 1 addition & 1 deletion tracker/udp/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ import (
"github.com/anacrolix/dht/v2/krpc"
"github.com/anacrolix/generics"
"github.com/anacrolix/log"
trackerServer "github.com/anacrolix/torrent/tracker/server"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/codes"
"go.opentelemetry.io/otel/trace"

trackerServer "github.com/anacrolix/torrent/tracker/server"
"github.com/anacrolix/torrent/tracker/udp"
)

Expand Down

0 comments on commit 31bbd43

Please sign in to comment.