18 lines
290 B
Go
18 lines
290 B
Go
|
package gorrent
|
||
|
|
||
|
type Settings struct {
|
||
|
DownloadPath string
|
||
|
HttpBindHost string
|
||
|
HttpBindPort int
|
||
|
ListenPort int
|
||
|
MaxConnections int
|
||
|
TorrentPath string
|
||
|
Proxy string
|
||
|
KeepFiles bool
|
||
|
Debug bool
|
||
|
}
|
||
|
|
||
|
func NewSettings() *Settings {
|
||
|
return &Settings{}
|
||
|
}
|