├── .github ├── FUNDING.yml └── workflows │ ├── golangci-lint.yml │ └── goreleaser.yml ├── .golangci.yml ├── .goreleaser.yaml ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── clients └── thepiratebay │ ├── thepiratebay.go │ └── types.go ├── cmd └── root.go ├── go.mod ├── go.sum ├── interfaces ├── client.go ├── torrent.go └── torrentFile.go ├── main.go └── ui ├── keys ├── descriptionKeys.go ├── filesKeys.go ├── keys.go ├── listKeys.go └── searchKeys.go ├── types.go └── ui.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/.github/workflows/goreleaser.yml -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/README.md -------------------------------------------------------------------------------- /clients/thepiratebay/thepiratebay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/clients/thepiratebay/thepiratebay.go -------------------------------------------------------------------------------- /clients/thepiratebay/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/clients/thepiratebay/types.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/cmd/root.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/go.sum -------------------------------------------------------------------------------- /interfaces/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/interfaces/client.go -------------------------------------------------------------------------------- /interfaces/torrent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/interfaces/torrent.go -------------------------------------------------------------------------------- /interfaces/torrentFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/interfaces/torrentFile.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/main.go -------------------------------------------------------------------------------- /ui/keys/descriptionKeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/ui/keys/descriptionKeys.go -------------------------------------------------------------------------------- /ui/keys/filesKeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/ui/keys/filesKeys.go -------------------------------------------------------------------------------- /ui/keys/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/ui/keys/keys.go -------------------------------------------------------------------------------- /ui/keys/listKeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/ui/keys/listKeys.go -------------------------------------------------------------------------------- /ui/keys/searchKeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/ui/keys/searchKeys.go -------------------------------------------------------------------------------- /ui/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/ui/types.go -------------------------------------------------------------------------------- /ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismaelpadilla/gotorrent/HEAD/ui/ui.go --------------------------------------------------------------------------------