mirror of
https://github.com/coredns/coredns.git
synced 2025-12-01 08:04:14 -05:00
10 lines
152 B
Go
10 lines
152 B
Go
package torrent
|
|
|
|
// Torrent contains the file data that needs to be torrented.
|
|
type Torrent struct {
|
|
dbfile string
|
|
dht bool
|
|
|
|
stop chan struct{}
|
|
}
|