mirror of
https://github.com/Radarr/Radarr
synced 2025-12-07 17:03:36 +01:00
13 lines
258 B
C#
13 lines
258 B
C#
using System;
|
|
using System.Net;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
class HttpProvider : IHttpProvider
|
|
{
|
|
public string DownloadString(string request)
|
|
{
|
|
return new WebClient().DownloadString(request);
|
|
}
|
|
}
|
|
}
|