├── .goreleaser.yml ├── LICENSE ├── README.md ├── active.go ├── add.go ├── check.go ├── count.go ├── del.go ├── deldata.go ├── demo.gif ├── downs.go ├── errors.go ├── go.mod ├── go.sum ├── hashing.go ├── head.go ├── info.go ├── latest.go ├── list.go ├── main.go ├── paused.go ├── recieveTorrent.go ├── search.go ├── seeding.go ├── sort.go ├── speed.go ├── start.go ├── stats.go ├── stop.go ├── tail.go └── trackers.go /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/README.md -------------------------------------------------------------------------------- /active.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/active.go -------------------------------------------------------------------------------- /add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/add.go -------------------------------------------------------------------------------- /check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/check.go -------------------------------------------------------------------------------- /count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/count.go -------------------------------------------------------------------------------- /del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/del.go -------------------------------------------------------------------------------- /deldata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/deldata.go -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/demo.gif -------------------------------------------------------------------------------- /downs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/downs.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/errors.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/go.sum -------------------------------------------------------------------------------- /hashing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/hashing.go -------------------------------------------------------------------------------- /head.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/head.go -------------------------------------------------------------------------------- /info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/info.go -------------------------------------------------------------------------------- /latest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/latest.go -------------------------------------------------------------------------------- /list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/list.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/main.go -------------------------------------------------------------------------------- /paused.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/paused.go -------------------------------------------------------------------------------- /recieveTorrent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/recieveTorrent.go -------------------------------------------------------------------------------- /search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/search.go -------------------------------------------------------------------------------- /seeding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/seeding.go -------------------------------------------------------------------------------- /sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/sort.go -------------------------------------------------------------------------------- /speed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/speed.go -------------------------------------------------------------------------------- /start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/start.go -------------------------------------------------------------------------------- /stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/stats.go -------------------------------------------------------------------------------- /stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/stop.go -------------------------------------------------------------------------------- /tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/tail.go -------------------------------------------------------------------------------- /trackers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyed/rtelegram/HEAD/trackers.go --------------------------------------------------------------------------------