| 23 | const DefaultURL = "https://orpheus.network/ajax.php" |
| 24 | |
| 25 | type ApiClient interface { |
| 26 | GetTorrentByID(ctx context.Context, torrentID string) (*domain.TorrentBasic, error) |
| 27 | TestAPI(ctx context.Context) (bool, error) |
| 28 | } |
| 29 | |
| 30 | type Client struct { |
| 31 | url string |