10 lines
171 B
Go
10 lines
171 B
Go
package torrent
|
|
|
|
type Config struct {
|
|
DataDir string
|
|
ListenAddr string
|
|
DisableTrackers bool
|
|
DownloadStrategy DownloadStrategy
|
|
NoDHT bool
|
|
}
|