github.com/anacrolix/torrent@v1.61.0/storage/torrent-reader.go (about)

     1  package storage
     2  
     3  import (
     4  	"io"
     5  )
     6  
     7  type TorrentReader interface {
     8  	io.ReaderAt
     9  	io.Closer
    10  }