mirror of
https://github.com/coredns/coredns.git
synced 2025-12-02 00:24:08 -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{}
|
||
|
|
}
|