7 lines
97 B
Go
7 lines
97 B
Go
package request_strategy
|
|
|
|
type Torrent interface {
|
|
IgnorePiece(int) bool
|
|
PieceLength() int64
|
|
}
|