mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-24 22:55:21 -04:00
12 lines
252 B
C#
12 lines
252 B
C#
using System.Net;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
internal class HttpProvider : IHttpProvider
|
|
{
|
|
public string DownloadString(string request)
|
|
{
|
|
return new WebClient().DownloadString(request);
|
|
}
|
|
}
|
|
} |