This commit is contained in:
Matt Joiner 2023-03-01 12:34:35 +11:00
parent d3b3d2d9bf
commit 31bbd435f9
No known key found for this signature in database
GPG Key ID: 6B990B8185E7F782
4 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,6 @@ import (
"github.com/anacrolix/missinggo/v2/bitmap" "github.com/anacrolix/missinggo/v2/bitmap"
"github.com/anacrolix/missinggo/v2/pproffd" "github.com/anacrolix/missinggo/v2/pproffd"
"github.com/anacrolix/sync" "github.com/anacrolix/sync"
"github.com/anacrolix/torrent/types/infohash"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
"github.com/dustin/go-humanize" "github.com/dustin/go-humanize"
gbtree "github.com/google/btree" gbtree "github.com/google/btree"
@ -47,6 +46,7 @@ import (
request_strategy "github.com/anacrolix/torrent/request-strategy" request_strategy "github.com/anacrolix/torrent/request-strategy"
"github.com/anacrolix/torrent/storage" "github.com/anacrolix/torrent/storage"
"github.com/anacrolix/torrent/tracker" "github.com/anacrolix/torrent/tracker"
"github.com/anacrolix/torrent/types/infohash"
"github.com/anacrolix/torrent/webtorrent" "github.com/anacrolix/torrent/webtorrent"
) )

View File

@ -11,11 +11,11 @@ import (
"github.com/anacrolix/dht/v2/krpc" "github.com/anacrolix/dht/v2/krpc"
"github.com/anacrolix/generics" "github.com/anacrolix/generics"
"github.com/anacrolix/log" "github.com/anacrolix/log"
trackerServer "github.com/anacrolix/torrent/tracker/server"
"github.com/anacrolix/torrent/bencode" "github.com/anacrolix/torrent/bencode"
"github.com/anacrolix/torrent/tracker" "github.com/anacrolix/torrent/tracker"
httpTracker "github.com/anacrolix/torrent/tracker/http" httpTracker "github.com/anacrolix/torrent/tracker/http"
trackerServer "github.com/anacrolix/torrent/tracker/server"
) )
type Handler struct { type Handler struct {

View File

@ -10,12 +10,12 @@ import (
"github.com/anacrolix/generics" "github.com/anacrolix/generics"
"github.com/anacrolix/log" "github.com/anacrolix/log"
"github.com/anacrolix/torrent/tracker"
"go.opentelemetry.io/otel" "go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/codes" "go.opentelemetry.io/otel/codes"
"go.opentelemetry.io/otel/trace" "go.opentelemetry.io/otel/trace"
"github.com/anacrolix/torrent/tracker"
"github.com/anacrolix/torrent/tracker/udp" "github.com/anacrolix/torrent/tracker/udp"
) )

View File

@ -13,12 +13,12 @@ import (
"github.com/anacrolix/dht/v2/krpc" "github.com/anacrolix/dht/v2/krpc"
"github.com/anacrolix/generics" "github.com/anacrolix/generics"
"github.com/anacrolix/log" "github.com/anacrolix/log"
trackerServer "github.com/anacrolix/torrent/tracker/server"
"go.opentelemetry.io/otel" "go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute" "go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/codes" "go.opentelemetry.io/otel/codes"
"go.opentelemetry.io/otel/trace" "go.opentelemetry.io/otel/trace"
trackerServer "github.com/anacrolix/torrent/tracker/server"
"github.com/anacrolix/torrent/tracker/udp" "github.com/anacrolix/torrent/tracker/udp"
) )