mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-06 04:52:21 -07: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);
|
|
}
|
|
}
|
|
}
|