add search without auth

This commit is contained in:
YouROK
2023-03-09 22:43:32 +03:00
parent 97ba2e573f
commit 78de9c543b
4 changed files with 9 additions and 5 deletions

View File

@@ -35,6 +35,7 @@ type args struct {
TorrentAddr string `help:"Torrent client address, default :32000"`
PubIPv4 string `arg:"-4" help:"set public IPv4 addr"`
PubIPv6 string `arg:"-6" help:"set public IPv6 addr"`
SearchWA bool `arg:"-swa" help:"search without auth"`
}
func (args) Version() string {
@@ -91,7 +92,7 @@ func main() {
go watchTDir(params.TorrentsDir)
}
server.Start(params.Port, params.RDB)
server.Start(params.Port, params.RDB, params.SearchWA)
log.TLogln(server.WaitServer())
log.Close()
time.Sleep(time.Second * 3)