mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-10 10:22:33 +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);
|
|
}
|
|
}
|
|
}
|