mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01: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);
|
|
}
|
|
}
|
|
} |