├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── blacklist.go ├── btengine ├── cmd └── btengine.go ├── dht.go ├── filter └── filter.go ├── go.mod ├── go.sum ├── key.txt ├── meta.go ├── models ├── model.go └── torrent.go └── torrent.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/README.md -------------------------------------------------------------------------------- /blacklist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/blacklist.go -------------------------------------------------------------------------------- /btengine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/btengine -------------------------------------------------------------------------------- /cmd/btengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/cmd/btengine.go -------------------------------------------------------------------------------- /dht.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/dht.go -------------------------------------------------------------------------------- /filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/filter/filter.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/go.sum -------------------------------------------------------------------------------- /key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/key.txt -------------------------------------------------------------------------------- /meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/meta.go -------------------------------------------------------------------------------- /models/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/models/model.go -------------------------------------------------------------------------------- /models/torrent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/models/torrent.go -------------------------------------------------------------------------------- /torrent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gitwillsky/btsearcher/HEAD/torrent.go --------------------------------------------------------------------------------