mirror of
https://github.com/coredns/coredns.git
synced 2025-12-04 09:25:13 -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
|
|
seed bool
|
|
|
|
stop chan struct{}
|
|
}
|