]> Sergey Matveev's repositories - btrtrc.git/blob - request-strategy/torrent.go
Drop support for go 1.20
[btrtrc.git] / request-strategy / torrent.go
1 package requestStrategy
2
3 type Torrent interface {
4         IgnorePiece(int) bool
5         PieceLength() int64
6 }