Files
coredns/plugin/torrent/torrent.go
Miek Gieben ef33425487 Add setup func
Signed-off-by: Miek Gieben <miek@miek.nl>
2020-07-27 10:15:49 +02:00

10 lines
152 B
Go

package torrent
// Torrent contains the file data that needs to be torrented.
type Torrent struct {
dbfile string
seed bool
stop chan struct{}
}