torrent.go 91 B

123456
  1. package requestStrategy
  2. type Torrent interface {
  3. Piece(int) Piece
  4. PieceLength() int64
  5. }