JackettDownloader is the interface for downloading torrent files.
| 48 | |
| 49 | // JackettDownloader is the interface for downloading torrent files. |
| 50 | type JackettDownloader interface { |
| 51 | DownloadTorrent(ctx context.Context, req jackett.TorrentDownloadRequest) ([]byte, error) |
| 52 | } |
| 53 | |
| 54 | // TorrentAdder is the interface for adding torrents to qBittorrent. |
| 55 | type TorrentAdder interface { |
no outgoing calls
no test coverage detected